Skip to content
This repository was archived by the owner on Sep 23, 2025. It is now read-only.

Commit 1972c18

Browse files
committed
Update config.yml
1 parent 370f8e4 commit 1972c18

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.circleci/config.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
name: CircleCI Workflow
23
version: 2.1 # use CircleCI 2.1
34
orbs:
45
python: circleci/python@2.1.1
@@ -39,11 +40,13 @@ jobs: # A basic unit of work in a run
3940
mkdir /home/circleci/project/test-results
4041
name: Create test-results folder
4142
- run:
42-
command:
43-
python -m pytest . -v -rP --doctest-modules --junitxml=test-results/test-results.xml --cov-report term-missing --cov-fail-under=80 --cov=./ --cov-report html:test-results/test-coverage.html --cov-report xml:test-results/test-coverage.xml
43+
command: |
44+
. venv/bin/activate
45+
python -m pytest . -v --junitxml=test-results/test-results.xml
4446
name: Run tests with pytest
4547
- run:
46-
command:
48+
command: |
49+
ls
4750
ls test-results/
4851
name: List test files
4952
# https://circleci.com/docs/2.0/collect-test-data/

0 commit comments

Comments
 (0)