Skip to content

Commit 1c6bd32

Browse files
authored
Fix SourceHut hanging during tox setup (#169)
1 parent c5f4d6b commit 1c6bd32

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.builds/freebsd.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ image: freebsd/12.x
33
sources:
44
- https://github.com/blueyed/pytest
55

6-
packages:
7-
- py37-tox
8-
96
environment:
107
CI: "true"
118
TOXENV: py37-xdist
@@ -15,9 +12,12 @@ environment:
1512

1613
tasks:
1714
- install: |
15+
python3.7 -m venv .venv
16+
.venv/bin/python -m pip install --progress-bar=off git+https://github.com/blueyed/tox@master
17+
.venv/bin/tox --version
1818
cd pytest
19-
tox --notest -vv
19+
../.venv/bin/tox --notest -v
2020
2121
- test: |
2222
cd pytest
23-
env COLUMNS=120 tox -v
23+
env COLUMNS=120 ../.venv/bin/tox -v

0 commit comments

Comments
 (0)