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 ed2e95a commit 4182bc4Copy full SHA for 4182bc4
.circleci/config.yml
@@ -0,0 +1,21 @@
1
+version: 2.0
2
+
3
+jobs:
4
+ build:
5
+ docker:
6
+ - image: circleci/python:2.7-stretch-browsers
7
+ branches:
8
+ only:
9
+ - master
10
+ steps:
11
+ - checkout
12
+ - run: "curl -fsSL https://testspace-client.s3.amazonaws.com/testspace-linux.tgz | sudo tar -zxvf- -C /usr/local/bin"
13
+ - run: "testspace config url samples.testspace.com"
14
+ - run: "sudo pip install -r requirements.txt"
15
+ - run: "sudo apt-get install pylint"
16
+ - run: "pylint stock_alerter/ -f parseable > analysis.txt || true"
17
+ - run: "nose2 --junit-xml --with-coverage"
18
+ - run:
19
+ name: Send reports to testspace
20
+ command: "testspace analysis.txt{lint} nose2.xml{stock_alerter} coverage.xml"
21
+ when: always
0 commit comments