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

MNT: move requirement files to dedicated directory #195

Merged
merged 2 commits into from Feb 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -34,10 +34,12 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install -r tests/requirements.txt
python -m pip install --requirement requirements/tests.txt

- name: run tests
run: pytest --color=yes
run: |
python -m pip freeze
pytest --color=yes


type-check:
Expand All @@ -60,7 +62,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install mypy==0.971
python -m pip install --requirement requirements/typecheck.txt

- name: Run mypy
run: mypy yt_idefix
File renamed without changes.
1 change: 1 addition & 0 deletions requirements/typecheck.txt
@@ -0,0 +1 @@
mypy==0.971