We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f53f6ec commit 6ddc48aCopy full SHA for 6ddc48a
.razorops.yaml
@@ -0,0 +1,16 @@
1
+tasks:
2
+ build-deps:
3
+ #runner: razorci/python:3.9
4
+ #runner: razorci/openjdk
5
+ steps:
6
+ - checkout
7
+ - commands:
8
+ - run: pip install pytest
9
+ - run: pip freeze --local > api/requirements.txt
10
+ - run: pip install pytest-cov
11
+ - run: pytest --cov app/ --cov-report=xml:test-coverage.xml
12
+ - codecov/upload
13
+ - run: |
14
+ curl -Os https://uploader.codecov.io/latest/linux/codecov
15
+ chmod +x codecov
16
+ ./codecov -t ${CODECOV_TOKEN}
0 commit comments