Skip to content

Commit e1bb393

Browse files
committed
ci: don't run pypi-server via pipenv
Signed-off-by: Oz Tiram <oz.tiram@gmail.com>
1 parent ce36d35 commit e1bb393

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,16 +107,16 @@ jobs:
107107
python -m pip install pypiserver==2.3.2
108108
- name: Run pypiserver Windows
109109
run: |
110-
cmd /c start pipenv run pypi-server run -v --host=0.0.0.0 --port=8080 --hash-algo=sha256 --disable-fallback ./tests/pypi/ ./tests/fixtures
110+
cmd /c start pipenv run pypi-server run -v --host=0.0.0.0 --port=8080 --hash-algo=sha256 --disable-fallback ./tests/pypi/ ./tests/fixtures
111111
if: ${{matrix.os == 'Windows' }}
112112
- name: Run pypiserver Mac
113113
run: |
114-
pipenv run pypi-server run -v --host=0.0.0.0 --port=8080 --hash-algo=sha256 --disable-fallback ./tests/pypi/ ./tests/fixtures &
114+
pypi-server run -v --host=0.0.0.0 --port=8080 --hash-algo=sha256 --disable-fallback ./tests/pypi/ ./tests/fixtures &
115115
if: ${{matrix.os == 'MacOS' }}
116116
- name: Run pypiserver Ubuntu
117117
run: |
118-
pipenv run pypi-server --version
119-
pipenv run pypi-server run -v --host=0.0.0.0 --port=8080 --hash-algo=sha256 --disable-fallback ./tests/pypi/ ./tests/fixtures &
118+
pypi-server --version
119+
pypi-server run -v --host=0.0.0.0 --port=8080 --hash-algo=sha256 --disable-fallback ./tests/pypi/ ./tests/fixtures &
120120
if: ${{matrix.os == 'Ubuntu' }}
121121
- name: Run tests
122122
env:

0 commit comments

Comments
 (0)