Merge pull request #47 from eReuse/ci/isolated-python-env
Use virtualenv to isolate from VM changes
This commit is contained in:
commit
2d27fdea75
|
@ -1,11 +1,11 @@
|
||||||
name: Django CI
|
name: Flask CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [master, testing]
|
branches: [master, testing]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [master, testing]
|
branches: [master, testing]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -46,6 +46,9 @@ jobs:
|
||||||
sudo apt-get update -qy
|
sudo apt-get update -qy
|
||||||
sudo apt-get -y install postgresql-client
|
sudo apt-get -y install postgresql-client
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
|
pip install virtualenv
|
||||||
|
virtualenv env
|
||||||
|
source env/bin/activate
|
||||||
pip install flake8 pytest
|
pip install flake8 pytest
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
@ -63,5 +66,6 @@ jobs:
|
||||||
|
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: |
|
run: |
|
||||||
|
source env/bin/activate
|
||||||
pytest -m mvp --maxfail=5 tests/
|
pytest -m mvp --maxfail=5 tests/
|
||||||
|
|
||||||
|
|
Reference in New Issue