Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume committed Nov 9, 2022
1 parent 5d9c661 commit 26b0e37
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/full_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
python3 -m venv test_env
. test_env/bin/activate
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt -r requirements-optional.txt
pip install -r requirements-extras.txt
# Using non-editable install for testing building of MANIFEST files
pip install .
pytest --cov=matminer matminer
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: requirements-dev.txt
cache-dependency-path: requirements-extras.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt --quiet
pip install -r requirements-extras.txt --quiet
# - name: mypy
# run: |
# mypy --version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
python3 -m venv test_env
. test_env/bin/activate
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt -r requirements-optional.txt
pip install -r requirements-extras.txt
# Using non-editable install for testing building of MANIFEST files
pip install .
pytest --cov=matminer matminer

0 comments on commit 26b0e37

Please sign in to comment.