Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

This should ensure requirements*.txt are tested #527

Merged
merged 1 commit into from
Sep 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deps_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -U setuptools
pip install -e .
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install -e .[dev]

- name: Run pre-commit
run: |
Expand All @@ -75,9 +75,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -U setuptools
pip install -e .
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install -e .

- name: Pass generated OpenAPI schemas through validator.swagger.io
run: |
Expand Down Expand Up @@ -171,9 +171,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -U setuptools
pip install -e .
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install -e .

- name: Run all tests (using a real MongoDB)
run: pytest -rs -vvv --cov=./optimade/ --cov-report=xml tests/
Expand Down Expand Up @@ -235,9 +235,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -U setuptools
pip install -e .
pip install -r requirements.txt
pip install -r requirements-docs.txt
pip install -e .

- name: Build
run: mkdocs build --strict --verbose
Expand Down