python3Packages.pygments: enable tests

this requires a similar trick as used by hypothesis to get around pytest
circular dependency
This commit is contained in:
Robert Scott
2021-03-28 14:32:18 +01:00
parent e73d77ae56
commit ac6e4a1287
2 changed files with 12 additions and 4 deletions
+8 -2
View File
@@ -6415,18 +6415,24 @@ in {
pytest_5 = callPackage
../development/python-modules/pytest/5.nix {
# hypothesis tests require pytest that causes dependency cycle
# hypothesis & pygments tests require pytest that causes dependency cycle
hypothesis = self.hypothesis.override {
doCheck = false;
};
pygments = self.pygments.override {
doCheck = false;
};
};
pytest_6 =
callPackage ../development/python-modules/pytest {
# hypothesis tests require pytest that causes dependency cycle
# hypothesis & pygments tests require pytest that causes dependency cycle
hypothesis = self.hypothesis.override {
doCheck = false;
};
pygments = self.pygments.override {
doCheck = false;
};
};
pytest_6_1 = self.pytest_6.overridePythonAttrs (oldAttrs: rec {