Skip to content

Commit 85e6097

Browse files
author
Florijan Stamenković
authored
Remove parallel testing during build
1 parent 3241470 commit 85e6097

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
mypy -p labelbox --pretty --show-error-codes
5959
- name: Install package and test dependencies
6060
run: |
61-
pip install tox==3.18.1 tox-gh-actions==1.3.0 pytest-parallel==0.1.0
61+
pip install tox==3.18.1
6262
6363
# TODO: replace tox.ini with what the Makefile does
6464
# to make sure local testing is
@@ -73,4 +73,4 @@ jobs:
7373
# randall+staging-python@labelbox.com
7474
LABELBOX_TEST_API_KEY_STAGING: ${{ secrets.STAGING_LABELBOX_API_KEY }}
7575
run: |
76-
pytest --workers 2 -svv
76+
pytest -svv

tox.ini

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22
[tox]
33
envlist = py36, py37, py38
44

5-
[gh-actions]
6-
python =
7-
3.6: py36
8-
3.7: py37
9-
3.8: py38
10-
115
[testenv]
126
# install pytest in the virtualenv where commands will be executed
137
deps =

0 commit comments

Comments
 (0)