Skip to content

Commit

Permalink
ci: build script updates to work with dependencies specifications
Browse files Browse the repository at this point in the history
  • Loading branch information
dbhart committed Oct 4, 2024
1 parent e7890b0 commit 6adfe59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,9 @@ jobs:
- name: Install development dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
python3 -m pip install -r tests/requirements.txt
- name: Test install
run: python3 -m pip install .[formats]
run: python3 -m pip install .[formats,tests,examples]

- name: Test with pytest
run: python3 -m pytest --nbmake --cov=sansmic --cov=tests examples/ tests/
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/continuous-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ jobs:
- name: Install development dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
python3 -m pip install -r tests/requirements.txt
python3 -m pip install -r requirements.txt -r tests/requirements.txt
- name: Test install
run: python3 -m pip install .
Expand Down

0 comments on commit 6adfe59

Please sign in to comment.