Fixing circleci configuration

This commit is contained in:
Mitsuo Takaki
2018-06-27 23:00:05 -07:00
parent 29eb92790f
commit 5b6c34741a

View File

@@ -8,12 +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:2.7
# 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
working_directory: ~/repo working_directory: ~/repo
@@ -30,25 +25,21 @@ jobs:
- run: - run:
name: install dependencies name: install dependencies
command: | command: |
python3 -m venv venv python -m venv venv
. venv/bin/activate . venv/bin/activate
pip install -r dev_requirements.txt pip install -r dev_requirements.txt
pip install -e .
- save_cache: - save_cache:
paths: paths:
- ./venv - ./venv
key: v1-dependencies-{{ checksum "dev_requirements.txt" }} 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: - run:
name: run tests name: run tests
command: | command: |
. venv/bin/activate . venv/bin/activate
python manage.py test py.test tests
- store_artifacts: - store_artifacts:
path: test-reports path: test-reports