File tree 2 files changed +11
-8
lines changed
2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 1
1
version : 2.1
2
2
3
3
jobs :
4
- build-test :
4
+ build :
5
5
docker :
6
6
- image : circleci/python:3.5.5
7
7
steps :
@@ -24,10 +24,10 @@ jobs:
24
24
- /home/circleci/.cache/pypoetry/virtualenvs
25
25
26
26
- run :
27
- name : Run Tests
27
+ name : Build
28
28
command : |
29
29
source $HOME/.poetry/env
30
- poetry run ./runtests
30
+ poetry build
31
31
deploy :
32
32
docker :
33
33
- image : circleci/python:3.5.5
@@ -46,13 +46,13 @@ jobs:
46
46
workflows :
47
47
version : 2.1
48
48
49
- build-test :
49
+ build :
50
50
jobs :
51
- - build-test
51
+ - build
52
52
53
- build-test- deploy :
53
+ build-deploy :
54
54
jobs :
55
- - build-test :
55
+ - build :
56
56
filters :
57
57
tags :
58
58
only : /v[0-9]+(\.[0-9]+)*/
@@ -62,7 +62,7 @@ workflows:
62
62
- deploy :
63
63
context : thread-pypi
64
64
requires :
65
- - build-test
65
+ - build
66
66
filters :
67
67
tags :
68
68
only : /v[0-9]+(\.[0-9]+)*/
Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ description = "Panel for the Django Debug toolbar to quickly switch between user
5
5
authors = [
" Thread Engineering <[email protected] >" ]
6
6
license = " BSD-3-Clause"
7
7
include = [" debug_toolbar_user_switcher/templates/debug_toolbar_user_switcher/*" ]
8
+ packages = [
9
+ { include = " debug_toolbar_user_switcher" },
10
+ ]
8
11
9
12
[tool .poetry .dependencies ]
10
13
python = " ^3.5"
You can’t perform that action at this time.
0 commit comments