summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2022-12-16 13:54:22 +0100
committerPierre Ossman <ossman@cendio.se>2022-12-16 14:14:23 +0100
commit789b80f7191286910655d2323ab3c17ea38934b2 (patch)
tree3651d32c9be0e11cf8b8527f9d266fc1ba30cb34
parent06e61fa4cc9d188dd28554ef96e646a2a9506108 (diff)
downloadwebsockify-789b80f7191286910655d2323ab3c17ea38934b2.tar.gz
Explicitly install dependencies
It is very buggy if we let setuptools do it for some reason, so have this as an explicit step instead.
-rw-r--r--.github/workflows/test.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 5ece4ea..e8d312f 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -21,10 +21,13 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- - name: Install dependencies
+ - name: Update pip and setuptools
run: |
python -m pip install --upgrade pip
python -m pip install setuptools
+ - name: Install dependencies
+ run: |
+ python -m pip install -e .
python -m pip install -r test-requirements.txt
- name: Install old numpy
run: |