Skip to content

Commit

Permalink
Add test requirements for aqua migrated tests (Qiskit#5527)
Browse files Browse the repository at this point in the history
* Add test requirements for aqua migrated tests

In Qiskit#5479 we migrated a number of tests for the algorithms/ and opflow/
directories as part of the final step of the code migration from
qiskit-aqua. However, as part of that change we didn't add the
additional optional dependencies added as part of that migration. This
means a subset of tests have been skipped since we added the tests. This
commit fixes this issue by adding the optional dependencies to the
requirements-dev.txt list so that we're running as many tests as are
reasonable during the CI runs.

* Exclude jax on windows envs

* Also exclude scikit-quant on Windows
  • Loading branch information
mtreinish authored Jan 8, 2021
1 parent e193de0 commit 61e819e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,7 @@ sphinx-panels
pygments>=2.4
tweedledum
networkx>=2.2
scikit-learn>=0.20.0
scikit-quant;platform_system != 'Windows'
jax;platform_system != 'Windows'
jaxlib;platform_system != 'Windows'

0 comments on commit 61e819e

Please sign in to comment.