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.
2 parents a8a986e + 771f69a commit 0f53873Copy full SHA for 0f53873
.github/workflows/test.yml
@@ -22,6 +22,7 @@ jobs:
22
- name: Test with inv
23
run: inv cover qa
24
- name: Coveralls
25
+ if: github.repository == 'python-restx/flask-restx' && github.event == 'push'
26
run: |
27
pip install coveralls
28
coveralls --rcfile=coverage.rc
.travis.yml
@@ -0,0 +1,9 @@
1
+language: python
2
+python: "3.8"
3
+if: type = pull_request
4
+install:
5
+ - pip install ".[dev]" coveralls
6
+script:
7
+ - inv cover
8
+after_success:
9
+ - coveralls --rcfile=coverage.rc
0 commit comments