Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: make up

- name: install dependencies
run: pip install tox tox-gh-actions
run: pip install --prefer-binary tox==4.58.0 tox-gh-actions==3.5.0

- name: tox
run: tox
Expand Down Expand Up @@ -319,8 +319,8 @@ jobs:

- name: install and test
run: |
poetry export -f requirements.txt -o requirements.txt
python3 -m pip install -r requirements.txt
poetry export --only main -f requirements.txt -o requirements.txt
python3 -m pip install --require-hashes -r requirements.txt
python3 -m pip install --index-url https://test.pypi.org/simple/ "mesh-client==${RELEASE_VERSION}"
INSTALLED_VERSION="$(python3 -c 'import mesh_client; print(mesh_client.__version__)')"
if [[ "${INSTALLED_VERSION}" != "${RELEASE_VERSION}" ]]; then
Expand Down
Loading
Loading