Skip to content

Commit

Permalink
Address install issues
Browse files Browse the repository at this point in the history
  • Loading branch information
atharva-2001 committed Jul 12, 2024
1 parent bf43f57 commit 4f48a18
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .github/actions/setup_tardis/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,3 @@ runs:
environment-name: tardis
cache-environment: true
cache-downloads: true

- name: Install package editable
shell: bash
run: |
pip install -e . --user
10 changes: 9 additions & 1 deletion .github/workflows/new_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ jobs:
with:
os-label: ${{ inputs.run_label }}

- name: Install package editable
shell: bash
run: |
pip install -e . --user
- name: Run tests
run: pytest tardis ${{ env.PYTEST_FLAGS }} -m "not continuum"
Expand All @@ -87,7 +91,11 @@ jobs:
uses: ./.github/actions/setup_tardis
with:
os-label: ${{ inputs.run_label }}


- name: Install package editable
shell: bash
run: |
pip install -e . --user
- name: Run continuum tests
run: pytest tardis ${{ env.PYTEST_FLAGS }} -m continuum
Expand Down

0 comments on commit 4f48a18

Please sign in to comment.