File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,15 +27,12 @@ jobs:
2727 run : |
2828 pip install poetry safety
2929 poetry config virtualenvs.in-project true
30- - name : Install dependencies # install all dependencies
30+ - name : Install dependencies
3131 run : poetry install
3232 - name : Pytest
3333 run : |
3434 poetry run coverage run -m --source=vertex_protocol pytest tests
3535 poetry run coverage report
36- # - name: Pycycle
37- # run: |
38- # poetry run pycycle --here
3936 - name : MyPy
4037 run : |
4138 poetry run mypy vertex_protocol
@@ -61,10 +58,10 @@ jobs:
6158 run : |
6259 pip install poetry safety
6360 poetry config virtualenvs.in-project true
64- - name : Install dependencies # install all dependencies
65- run : poetry install
61+ - name : Install dependencies
62+ run : poetry install --no-dev
6663 - name : Build and publish
6764 env :
6865 PYPI_USERNAME : ${{ secrets.PYPI_USERNAME }}
6966 PYPI_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
70- run : poetry publish -u $PYPI_USERNAME -p $PYPI_PASSWORD --build
67+ run : poetry publish -u $PYPI_USERNAME -p $PYPI_PASSWORD --build
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ python = "^3.9"
1919pydantic = " ^1.10.7"
2020web3 = " ^6.4.0"
2121eth-account = " ^0.8.0"
22+ click-completion = " ^0.5.2"
2223
2324[tool .poetry .group .dev .dependencies ]
2425ruff = " *"
You can’t perform that action at this time.
0 commit comments