Merge pull request #147766 from drewrisinger/dr-pr-fix-qiskit-aqua-timeout

python3Packages.qiskit-aqua: disable slow tests

authored by Fabian Affolter and committed by GitHub d57f82e3 e39e0221

+3 -1
+3 -1
pkgs/development/python-modules/qiskit-aqua/default.nix
··· 111 111 "qiskit.optimization" 112 112 ]; 113 113 pytestFlagsArray = [ 114 - "--timeout=30" 114 + "--timeout=30" # limit test duration to 30 seconds. Some tests previously would run indefinitely 115 115 "--durations=10" 116 116 ]; 117 117 disabledTestPaths = lib.optionals (!withPyscf) [ ··· 169 169 "test_eoh" 170 170 "test_qasm_5" 171 171 "test_uccsd_hf" 172 + "test_lih" 173 + "test_lih_freeze_core" 172 174 ] ++ lib.optionals (!withPyscf) [ 173 175 "test_validate" # test/chemistry/test_inputparser.py 174 176 ];