Skip to content

Commit 48c2389

Browse files
author
Dmytro Parfeniuk
committed
💚 tox is added to the installation process
1 parent ac70c07 commit 48c2389

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/development.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Install dependencies
3939
run: pip install tox
4040
- name: Run integration tests
41-
run: tox -e test-integration -- -m smoke
41+
run: python -m tox -e test-integration -- -m smoke
4242

4343
publish-dev:
4444
needs: [unit-tests, integration-tests]
@@ -50,7 +50,7 @@ jobs:
5050
with:
5151
python-version: "3.8"
5252
- name: Install pypa/build and pypa/twine
53-
run: python3 -m pip install build twine --user
53+
run: python3 -m pip install tox build twine --user
5454
- name: Build a binary wheel & Inject build props
5555
run: python3 -m tox -e build
5656
- name: Publish to Internal PyPI

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
with:
7979
python-version: "3.8"
8080
- name: Install pypa/build and pypa/twine
81-
run: python3 -m pip install build twine --user
81+
run: python3 -m pip install tox build twine --user
8282
- name: Build a binary wheel & Inject build props
8383
run: python3 -m tox -e build
8484
- name: Publish to Internal PyPI

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
with:
8181
python-version: "3.8"
8282
- name: Install pypa/build and pypa/twine
83-
run: python3 -m pip install build twine --user
83+
run: python3 -m pip install tox build twine --user
8484
- name: Build a binary wheel & Inject build props
8585
run: python3 -m tox -e build
8686
- name: Publish to Internal PyPI
@@ -102,7 +102,7 @@ jobs:
102102
with:
103103
python-version: "3.8"
104104
- name: Install pypa/build and pypa/twine
105-
run: python3 -m pip install build twine --user
105+
run: python3 -m pip install tox build twine --user
106106
- name: Build a binary wheel & Inject build props
107107
run: python3 -m tox build
108108
- name: Publish to Public PyPI

0 commit comments

Comments
 (0)