Skip to content

Commit d90fcf6

Browse files
committed
fix ci
1 parent 992353f commit d90fcf6

3 files changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff 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

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ python = "^3.9"
1919
pydantic = "^1.10.7"
2020
web3 = "^6.4.0"
2121
eth-account = "^0.8.0"
22+
click-completion = "^0.5.2"
2223

2324
[tool.poetry.group.dev.dependencies]
2425
ruff = "*"

0 commit comments

Comments
 (0)