python311Packages.qcodes: disable flaky tests
This commit is contained in:
parent
776c427910
commit
0de321de72
1 changed files with 6 additions and 1 deletions
|
@ -122,6 +122,9 @@ buildPythonPackage rec {
|
||||||
__darwinAllowLocalNetworking = true;
|
__darwinAllowLocalNetworking = true;
|
||||||
|
|
||||||
pytestFlagsArray = [
|
pytestFlagsArray = [
|
||||||
|
"-v"
|
||||||
|
"-n"
|
||||||
|
"$NIX_BUILD_CORES"
|
||||||
# Follow upstream with settings
|
# Follow upstream with settings
|
||||||
"--durations=20"
|
"--durations=20"
|
||||||
];
|
];
|
||||||
|
@ -135,8 +138,10 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
# Tests are time-sensitive and power-consuming
|
# Tests are time-sensitive and power-consuming
|
||||||
# Those tests fails repeatably
|
# Those tests fails repeatably and are flaky
|
||||||
"test_access_channels_by_slice"
|
"test_access_channels_by_slice"
|
||||||
|
"test_aggregator"
|
||||||
|
"test_datasaver"
|
||||||
"test_do1d_additional_setpoints_shape"
|
"test_do1d_additional_setpoints_shape"
|
||||||
"test_dond_1d_additional_setpoints_shape"
|
"test_dond_1d_additional_setpoints_shape"
|
||||||
"test_field_limits"
|
"test_field_limits"
|
||||||
|
|
Loading…
Reference in a new issue