We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3e7fa2 commit 5cfc0eaCopy full SHA for 5cfc0ea
3 files changed
.circleci/config.yml
@@ -0,0 +1,28 @@
1
+version: 2
2
+
3
+defaults: &defaults
4
+ docker:
5
+ - image: circleci/python:2.7
6
7
+workflows:
8
+ version: 2
9
+ build-and-test:
10
+ jobs:
11
+ - lint
12
+ - test-unit
13
14
+jobs:
15
+ lint:
16
+ << : *defaults
17
18
+ steps:
19
+ - checkout
20
+ - run: sudo pip install flake8 codecov pep8-naming
21
+ - run: sudo make lint
22
23
+ test-unit:
24
25
26
27
28
+ - run: sudo make test
Makefile
@@ -1,3 +1,9 @@
-test:
+.PHONY: all lint test
+all: lint test
+lint:
flake8 stacker_blueprints
+test:
python setup.py test
circle.yml
0 commit comments