Skip to content

Commit

Permalink
Do not install dependencies from test-pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
albarji committed Aug 22, 2021
1 parent 50077fe commit 5274e98
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Install dependencies
run: |
conda env update --file environment.yml --name base
- name: Erase everything but tests folder
run: |
rm -rf docs guertena
Expand All @@ -51,7 +55,7 @@ jobs:

- name: Install package
run: |
python -m pip install --index-url https://test.pypi.org/simple/ guertena==${{steps.tag.outputs.tag}}
python -m pip install --index-url https://test.pypi.org/simple/ --no-deps guertena==${{steps.tag.outputs.tag}}
- name: Run unit tests
run: |
Expand Down

0 comments on commit 5274e98

Please sign in to comment.