File tree Expand file tree Collapse file tree 2 files changed +40
-18
lines changed
Expand file tree Collapse file tree 2 files changed +40
-18
lines changed Original file line number Diff line number Diff line change 1+ version : 2.1
2+
3+ orbs :
4+ python :
circleci/[email protected] 5+
6+ jobs :
7+ build-and-test :
8+ docker :
9+ - image : cimg/python:3.9
10+ steps :
11+ - checkout
12+ - python/install-packages :
13+ pkg-manager : pip
14+ - run :
15+ name : Run tests
16+ command : pytest -m "not compiled" --cov=pythonwhat
17+ publish :
18+ docker :
19+ - image : cimg/python:3.9
20+ steps :
21+ - checkout
22+ - run :
23+ command : |
24+ python setup.py sdist bdist_wheel
25+ pip install pipenv
26+ pipenv install twine
27+ pipenv run twine upload --verbose --repository pypi dist/*
28+
29+ workflows :
30+ build :
31+ jobs :
32+ - build-and-test
33+ - publish :
34+ requires :
35+ - build-and-test
36+ filters :
37+ tags :
38+ only : /^.*#v\d+\.\d+\.\d+(-rc\.\d+)?$/
39+ branches :
40+ ignore : /.*/
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments