Skip to content

Commit

Permalink
Fix in build command
Browse files Browse the repository at this point in the history
  • Loading branch information
lchamorro-cn committed Mar 2, 2023
1 parent 4dad892 commit dbf34b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@ jobs:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
cd src/model2queue
python setup.py sdist bdist_wheel
twine upload dist/*
4 changes: 2 additions & 2 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Install
run: |
python src/model2queue/setup.py sdist bdist_wheel
cd src/model2queue
python setup.py sdist bdist_wheel
pip install dist/model2queue-*.whl
pip install --no-deps src/model2queue
- name: Test with pytest
run: |
pytest tests/
Expand Down

0 comments on commit dbf34b8

Please sign in to comment.