mirror of
https://github.com/mtan93/cachet-url-monitor.git
synced 2026-03-08 05:31:58 +00:00
Fixing circleci configuration
This commit is contained in:
@@ -8,12 +8,7 @@ jobs:
|
||||
docker:
|
||||
# specify the version you desire here
|
||||
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers`
|
||||
- image: circleci/python:3.6.1
|
||||
|
||||
# Specify service dependencies here if necessary
|
||||
# CircleCI maintains a library of pre-built images
|
||||
# documented at https://circleci.com/docs/2.0/circleci-images/
|
||||
# - image: circleci/postgres:9.4
|
||||
- image: circleci/python:2.7
|
||||
|
||||
working_directory: ~/repo
|
||||
|
||||
@@ -30,25 +25,21 @@ jobs:
|
||||
- run:
|
||||
name: install dependencies
|
||||
command: |
|
||||
python3 -m venv venv
|
||||
python -m venv venv
|
||||
. venv/bin/activate
|
||||
pip install -r dev_requirements.txt
|
||||
pip install -e .
|
||||
|
||||
- save_cache:
|
||||
paths:
|
||||
- ./venv
|
||||
key: v1-dependencies-{{ checksum "dev_requirements.txt" }}
|
||||
|
||||
# run tests!
|
||||
# this example uses Django's built-in test-runner
|
||||
# other common Python testing frameworks include pytest and nose
|
||||
# https://pytest.org
|
||||
# https://nose.readthedocs.io
|
||||
- run:
|
||||
name: run tests
|
||||
command: |
|
||||
. venv/bin/activate
|
||||
python manage.py test
|
||||
py.test tests
|
||||
|
||||
- store_artifacts:
|
||||
path: test-reports
|
||||
|
||||
Reference in New Issue
Block a user