mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
python3Packages.canmatrix: switch to pytestCheckHook
This commit is contained in:
parent
d9b1f25d5d
commit
9e599dd814
@ -13,7 +13,7 @@
|
||||
, xlrd
|
||||
, XlsxWriter
|
||||
, pyyaml
|
||||
, pytest
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -48,14 +48,11 @@ buildPythonPackage rec {
|
||||
--replace "version = versioneer.get_version()" "version = \"${version}\""
|
||||
'';
|
||||
|
||||
checkInputs = [
|
||||
pytest
|
||||
];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
# long_envvar_name_imports requires stable key value pair ordering
|
||||
checkPhase = ''
|
||||
pytest -s src/canmatrix -k 'not long_envvar_name_imports'
|
||||
'';
|
||||
pytestFlagsArray = [ "-s src/canmatrix" ];
|
||||
disabledTests = [ "long_envvar_name_imports" ];
|
||||
pythonImportsCheck = [ "canmatrix" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/ebroecker/canmatrix";
|
||||
|
Loading…
Reference in New Issue
Block a user