File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ version : 2
2+ jobs :
3+ build :
4+ docker :
5+ - image : circleci/python:3.6.2
6+ working_directory : ~/fdk-python
7+ steps :
8+ - checkout
9+ - restore_cache :
10+ key : deps1-{{ .Branch }}-{{ checksum "requirements.txt" }}
11+ - run :
12+ command : |
13+ python3 -m venv venv
14+ . venv/bin/activate
15+ pip install tox
16+ pip install -r requirements.txt
17+ - save_cache :
18+ key : deps1-{{ .Branch }}-{{ checksum "requirements.txt" }}
19+ paths :
20+ - " venv"
21+ - run :
22+ command : |
23+ . venv/bin/activate
24+ tox -epep8
25+ - run :
26+ command : |
27+ . venv/bin/activate
28+ tox -epy3.6
Original file line number Diff line number Diff line change 11[metadata]
22version =0.0.1
3- name = fdk-python
4- summary = Python Function Developer Kit
3+ name = fdk
4+ summary = Function Developer Kit for Python
55description-file =
66 README.md
77author = Denis Makogon
You can’t perform that action at this time.
0 commit comments