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 5c78892 commit 85dcc41Copy full SHA for 85dcc41
.circleci/config.yml
@@ -1,7 +1,7 @@
1
version: 2.1
2
3
jobs:
4
- build:
+ build-test:
5
docker:
6
- image: circleci/python:3.5.5
7
steps:
@@ -27,7 +27,8 @@ jobs:
27
name: Build
28
command: |
29
source $HOME/.poetry/env
30
- poetry build
+ poetry run ./runtests
31
+
32
deploy:
33
34
@@ -46,13 +47,13 @@ jobs:
46
47
workflows:
48
49
50
51
- - build
52
+ - build-test
53
- build-deploy:
54
+ build-test-deploy:
55
- - build:
56
+ - build-test:
57
filters:
58
tags:
59
only: /v[0-9]+(\.[0-9]+)*/
@@ -62,7 +63,7 @@ workflows:
62
63
- deploy:
64
context: thread-pypi
65
requires:
66
67
68
69
0 commit comments