Skip to content

Commit

Permalink
Fixing circleci configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
mtakaki committed Jun 28, 2018
1 parent 29eb927 commit 5b6c347
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,8 @@ 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
- 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

steps:
Expand All @@ -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
Expand Down

0 comments on commit 5b6c347

Please sign in to comment.