forked from mirrors/nixpkgs
python3Packages.behave: skip test failing on darwin
Timing-based test is flaky on Darwin: https://github.com/NixOS/nixpkgs/pull/97737#issuecomment-691489824
This commit is contained in:
parent
f690cacb06
commit
0f34c4eb33
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, fetchFromGitHub
|
||||
, buildPythonApplication, python
|
||||
, mock, pathpy, pyhamcrest, pytest, pytest-html
|
||||
, pytestCheckHook, mock, pathpy, pyhamcrest, pytest-html
|
||||
, glibcLocales
|
||||
, colorama, cucumber-tag-expressions, parse, parse-type, six
|
||||
}:
|
||||
|
@ -16,7 +16,7 @@ buildPythonApplication rec {
|
|||
sha256 = "1ssgixmqlg8sxsyalr83a1970njc2wg3zl8idsmxnsljwacv7qwv";
|
||||
};
|
||||
|
||||
checkInputs = [ mock pathpy pyhamcrest pytest pytest-html ];
|
||||
checkInputs = [ pytestCheckHook mock pathpy pyhamcrest pytest-html ];
|
||||
buildInputs = [ glibcLocales ];
|
||||
propagatedBuildInputs = [ colorama cucumber-tag-expressions parse parse-type six ];
|
||||
|
||||
|
@ -24,14 +24,14 @@ buildPythonApplication rec {
|
|||
patchShebangs bin
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
# timing-based test flaky on Darwin
|
||||
# https://github.com/NixOS/nixpkgs/pull/97737#issuecomment-691489824
|
||||
disabledTests = stdenv.lib.optionals stdenv.isDarwin [ "test_step_decorator_async_run_until_complete" ];
|
||||
|
||||
checkPhase = ''
|
||||
postCheck = ''
|
||||
export LANG="en_US.UTF-8"
|
||||
export LC_ALL="en_US.UTF-8"
|
||||
|
||||
pytest tests
|
||||
|
||||
${python.interpreter} bin/behave -f progress3 --stop --tags='~@xfail' features/
|
||||
${python.interpreter} bin/behave -f progress3 --stop --tags='~@xfail' tools/test-features/
|
||||
${python.interpreter} bin/behave -f progress3 --stop --tags='~@xfail' issue.features/
|
||||
|
|
Loading…
Reference in a new issue