mirror of
https://github.com/borgbase/vorta
synced 2024-12-23 00:07:58 +00:00
Update config.yml
This commit is contained in:
parent
1425e78d26
commit
15b4821ad8
1 changed files with 3 additions and 2 deletions
|
@ -8,7 +8,7 @@ jobs:
|
||||||
docker:
|
docker:
|
||||||
# specify the version you desire here
|
# specify the version you desire here
|
||||||
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers`
|
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers`
|
||||||
- image: circleci/python:3.6.1
|
- image: circleci/python:3.6.1-browsers
|
||||||
|
|
||||||
# Specify service dependencies here if necessary
|
# Specify service dependencies here if necessary
|
||||||
# CircleCI maintains a library of pre-built images
|
# CircleCI maintains a library of pre-built images
|
||||||
|
@ -32,6 +32,7 @@ jobs:
|
||||||
command: |
|
command: |
|
||||||
python3 -m venv venv
|
python3 -m venv venv
|
||||||
. venv/bin/activate
|
. venv/bin/activate
|
||||||
|
pip install -U setuptools pip
|
||||||
pip install .
|
pip install .
|
||||||
pip install -r requirements-dev.txt
|
pip install -r requirements-dev.txt
|
||||||
|
|
||||||
|
@ -49,7 +50,7 @@ jobs:
|
||||||
name: run tests
|
name: run tests
|
||||||
command: |
|
command: |
|
||||||
. venv/bin/activate
|
. venv/bin/activate
|
||||||
xvfb-run pytest
|
pytest
|
||||||
|
|
||||||
- store_artifacts:
|
- store_artifacts:
|
||||||
path: test-reports
|
path: test-reports
|
||||||
|
|
Loading…
Reference in a new issue