Skip to content

Commit

Permalink
install local package in test
Browse files Browse the repository at this point in the history
  • Loading branch information
bejager committed May 24, 2024
1 parent 748b667 commit f609b89
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ jobs:
- name: Pre-build dependencies
run: python3 -m pip install --upgrade pip

# TODO: remove after release
- name: Build dependencies
run: |
python -m pip install -U pip setuptools
pip install wheel
python3 setup.py sdist bdist_wheel
pip install --force-reinstall dist/pvorca-0.2.1-py3-none-any.whl
- name: Install dependencies
run: pip install -r requirements.txt

Expand All @@ -70,6 +78,14 @@ jobs:
- name: Pre-build dependencies
run: python3 -m pip install --upgrade pip

# TODO: remove after release
- name: Build dependencies
run: |
python -m pip install -U pip setuptools
pip install wheel
python3 setup.py sdist bdist_wheel
pip install --force-reinstall dist/pvorca-0.2.1-py3-none-any.whl
- name: Install dependencies
run: pip install -r requirements.txt

Expand Down

0 comments on commit f609b89

Please sign in to comment.