We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12f17b5 commit 67046d7Copy full SHA for 67046d7
.circleci/config.yml
@@ -40,4 +40,13 @@ jobs:
40
- run:
41
name: Run Pytest, report coverage
42
command: |
43
- poetry run coverage run --omit="/home/circleci/.cache/pypoetry/virtualenvs" -m pytest
+ poetry run coverage run --omit="/home/circleci/.cache/pypoetry/virtualenvs" -m pytest
44
+
45
+# In the workflows section, we specify when we want to run the jobs defined
46
+workflows:
47
+ version: 2
48
49
+ # The build-and-test we will run EVERYTIME a piece of code changes
50
+ build-and-test-workflow:
51
+ jobs:
52
+ - build-and-test
0 commit comments