Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@ jobs:
shell: bash -l {0} # Use login shell for conda commands
run: |
conda env create -f environment.yml
conda activate potpyri_test
conda activate potpyri

- name: Install the Package and Remaining Dependencies
shell: bash -l {0}
run: |
conda activate potpyri_test
conda activate potpyri
python -m pip install --upgrade pip setuptools wheel
pip install .

- name: Run tests
shell: bash -l {0}
run: |
conda activate potpyri_test
conda activate potpyri
pip install .[test]
pytest
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: potpyri_test
name: potpyri
channels:
- conda-forge
- defaults
Expand Down
Loading