Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages.mox3: disabling tests

authored by Marek Mahut and committed by Frederik Rietdijk 5646ada5 4497bee1

+3 -7
+3 -7
pkgs/development/python-modules/mox3/default.nix
··· 20 sha256 = "b13c0b8459d6fb0688f9a4e70feeec43fa2cca05b727fc01156789596e083bb1"; 21 }; 22 23 - patchPhase = '' 24 - sed -i 's@python@${python.interpreter}@' .testr.conf 25 - ''; 26 - 27 buildInputs = [ subunit testrepository testtools six ]; 28 propagatedBuildInputs = [ pbr fixtures ]; 29 30 - # FAIL: mox3.tests.test_mox.RegexTest.testReprWithFlags 31 - # ValueError: cannot use LOCALE flag with a str pattern 32 - doCheck = !isPy36; 33 34 meta = with stdenv.lib; { 35 description = "Mock object framework for Python";
··· 20 sha256 = "b13c0b8459d6fb0688f9a4e70feeec43fa2cca05b727fc01156789596e083bb1"; 21 }; 22 23 buildInputs = [ subunit testrepository testtools six ]; 24 propagatedBuildInputs = [ pbr fixtures ]; 25 26 + # Disabling as several tests depdencies are missing: 27 + # https://opendev.org/openstack/mox3/src/branch/master/test-requirements.txt 28 + doCheck = false; 29 30 meta = with stdenv.lib; { 31 description = "Mock object framework for Python";