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 073dd73 commit 3fe62bcCopy full SHA for 3fe62bc
1 file changed
.circleci/config.yml
@@ -0,0 +1,22 @@
1
+version: 2
2
+jobs:
3
+ build:
4
+ docker:
5
+ - image: circleci/python:3.6.1
6
+ working_directory: ~/arkecosystem/crypto
7
+ steps:
8
+ - checkout
9
+ - run:
10
+ name: install dependencies
11
+ command: |
12
+ python3 -m venv venv
13
+ . venv/bin/activate
14
+ pip install .[test]
15
16
+ name: run tests
17
18
19
+ pytest -v -s --cov=ark --cov-config=.coveragerc --cov-report xml
20
+ - store_artifacts:
21
+ path: test-reports
22
+ destination: test-reports
0 commit comments