Merge pull request #117886 from risicle/ris-pygments-tests

This commit is contained in:
Sandro
2021-03-29 11:58:10 +02:00
committed by GitHub
3 changed files with 14 additions and 6 deletions
+8 -2
View File
@@ -6417,18 +6417,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 {