Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9ec319f

Browse files
authored
Merge pull request #2 from fnproject/updating-artifact-name
Updating artifact name
2 parents def0841 + 023e42e commit 9ec319f

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

circle.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
version=0.0.1
3-
name = fdk-python
4-
summary = Python Function Developer Kit
3+
name = fdk
4+
summary = Function Developer Kit for Python
55
description-file =
66
README.md
77
author = Denis Makogon

0 commit comments

Comments
 (0)