File tree Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Expand file tree Collapse file tree 2 files changed +30
-2
lines changed 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 1
1
[metadata]
2
2
version =0.0.1
3
- name = fdk-python
4
- summary = Python Function Developer Kit
3
+ name = fdk
4
+ summary = Function Developer Kit for Python
5
5
description-file =
6
6
README.md
7
7
author = Denis Makogon
You can’t perform that action at this time.
0 commit comments