Skip to content

Commit

Permalink
change installation order for dep on self
Browse files Browse the repository at this point in the history
  • Loading branch information
Helveg committed Dec 12, 2023
1 parent dbd2579 commit 0d1eb05
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ jobs:
- name: Install dependencies & self
run: |
python -m pip install --upgrade pip
pip install -e . --no-deps
pip install -r requirements.txt --prefer-binary
pip install NEURON==${{ matrix.nrn }}
pip install -e .
pip install NEURON==${{ matrix.nrn }}
- name: Run package-free tests
run: coverage run -p -m unittest -v
- name: Install test package
Expand Down

0 comments on commit 0d1eb05

Please sign in to comment.