summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGraham Dumpleton <Graham.Dumpleton@gmail.com>2021-06-18 12:03:23 +1000
committerGraham Dumpleton <Graham.Dumpleton@gmail.com>2021-06-18 12:03:23 +1000
commit9ed2c5007e94ba418dc0bdf0577bd9aeb66e5d15 (patch)
tree6ab27e18bae5a10891691e07d61c27aea1391304 /.github
parent263f0510aa8f720b14fdedea77814121fc302934 (diff)
downloadmod_wsgi-9ed2c5007e94ba418dc0bdf0577bd9aeb66e5d15.tar.gz
Drop tox and install mod_wsgi-express manually.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 0d99b38..3dca3ed 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -26,8 +26,10 @@ jobs:
run: python -m pip install --upgrade pip setuptools
- name: "Install tox dependencies"
run: python -m pip install --upgrade tox tox-gh-actions
- - name: "Run tox for ${{ matrix.python-version }}"
- run: "python -m tox -vvv"
+ #- name: "Run tox for ${{ matrix.python-version }}"
+ # run: "python -m tox -vvv"
+ - name: "Install mod_wsgi-express"
+ run: python -m pip install .
- name: "Start up mod_wsgi-express"
run: "mod_wsgi-express start-server tests/hello.wsgi --port 8080 --log-to-terminal --pid-file httpd.pid &"
- name: "Wait for server to start"