Skip to content

Commit

Permalink
Install HTTP client in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-evs committed May 19, 2022
1 parent 12a70ce commit 64a9e48
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ jobs:
pip install -e .
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install -r requirements-http-client.txt
- name: Run all tests (using `mongomock`)
run: pytest -rs -vvv --cov=./optimade/ --cov-report=xml tests/
Expand Down
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,15 @@
+ testing_deps
+ client_deps
)
all_deps = dev_deps + elastic_deps + aiida_deps + ase_deps + pymatgen_deps + jarvis_deps
all_deps = (
dev_deps
+ elastic_deps
+ aiida_deps
+ ase_deps
+ pymatgen_deps
+ jarvis_deps
+ http_client_deps
)

setup(
name="optimade",
Expand Down

0 comments on commit 64a9e48

Please sign in to comment.