Skip to content

Commit 3fe62bc

Browse files
authored
chore: setup CircleCI
1 parent 073dd73 commit 3fe62bc

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.circleci/config.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
- run:
16+
name: run tests
17+
command: |
18+
. venv/bin/activate
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

Comments
 (0)