Skip to content

Commit 58a71c7

Browse files
authored
Update config.yml
1 parent 61ceed7 commit 58a71c7

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs: # A basic unit of work in a run
33
build: # runs not using Workflows must have a `build` job as entry point
44
# directory where steps are run
5-
working_directory: ~/circleci-demo-python-django
5+
66
docker: # run the steps with Docker
77
# CircleCI Python images available at: https://hub.docker.com/r/circleci/python/
88
- image: circleci/python:3.6.4
@@ -29,9 +29,7 @@ jobs: # A basic unit of work in a run
2929
key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
3030
paths:
3131
- "venv"
32-
- run:
33-
command: |
34-
pipenv run python manage.py test
32+
3533
- store_test_results: # Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/
3634
path: test-results
3735
- store_artifacts: # Upload test summary for display in Artifacts: https://circleci.com/docs/2.0/artifacts/

0 commit comments

Comments
 (0)