Skip to content

Commit

Permalink
Changed PR logic to run coveralls on full test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
johnjasa committed Mar 16, 2021
1 parent 80bd75d commit 1d3e2da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI_every_PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
bash ./install.sh test-environment
conda activate test-environment
- name: Run demo tests within WindSE
- name: Run all tests within WindSE
shell: pwsh
run: |
conda activate test-environment
pytest -v --cov=windse tests/test_demos.py
pytest -v --cov=windse tests
# Run coveralls
- name: Run coveralls
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI_every_commit.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CI_every_commit

# We run CI on push commits on all branches
on: [push, pull_request]
on: [push]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand Down

0 comments on commit 1d3e2da

Please sign in to comment.