We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea20997 commit 8e02f3aCopy full SHA for 8e02f3a
1 file changed
.github/workflows/pytest-web.yml
@@ -50,16 +50,8 @@ jobs:
50
python -m venv venv
51
source venv/bin/activate
52
python -m pip install --upgrade pip setuptools wheel
53
-
54
- # Download openquake.engine source distribution and install editable
55
- - name: Install openquake.engine (editable)
56
- run: |
57
- source venv/bin/activate
58
- mkdir -p /tmp/openquake
59
- (cd /tmp/openquake && git clone --branch v${OQ_VERSION} https://github.com/gem/oq-engine.git .)
60
- pip install -r "/tmp/openquake/${REQUIREMENTS_FILE}"
+ pip install -r "./${REQUIREMENTS_FILE}"
61
pip install -U -e ".[web]" # upgrade all packages to most recent ones
62
- # pip freeze > ./${REQUIREMENTS_FILE} # in case one wants to freeze dependencies locally
63
64
# Run Django migrations and pytest
65
- name: Test eGSIM (web app)
0 commit comments