Merge pull request #427 from l0b0/feat/re-enable-tests

feat: Re-enable tests
This commit is contained in:
adisbladis 2021-11-16 01:41:07 +00:00 committed by GitHub
commit f37c4676c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,7 +73,6 @@ self: super:
astroid = super.astroid.overridePythonAttrs (
old: rec {
buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ];
doCheck = false;
}
);
@ -1208,7 +1207,6 @@ self: super:
pylint = super.pylint.overridePythonAttrs (
old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ];
doCheck = false;
}
);
@ -1376,7 +1374,6 @@ self: super:
postPatch = old.postPatch or "" + ''
sed -i '/\[metadata\]/aversion = ${old.version}' setup.cfg
'';
doCheck = false;
}
);