Skip to content

Commit f2bb7e9

Browse files
authored
Merge pull request #32 from golnazads/master
trying to fix the build error, copied from reference service that Nemenja fixed
2 parents 17530aa + 4fcc95e commit f2bb7e9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/python_actions.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ jobs:
66
build:
77

88
runs-on: ubuntu-latest
9-
env:
10-
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
119

1210
steps:
1311
- uses: actions/checkout@v2
@@ -25,6 +23,8 @@ jobs:
2523
run: |
2624
py.test
2725
28-
- run: coveralls
29-
26+
- name: Upload coverage data to coveralls.io
27+
run: coveralls
28+
env:
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030

dev-requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
coveralls==1.8.2
2-
coverage==4.5.4
1+
coveralls==2.2.0
2+
coverage==5.2.1
33
flask-testing==0.8.1
44
httpretty==0.8.10; python_version < '3.0'
55
httpretty==1.0.5; python_version > '3.0'

0 commit comments

Comments
 (0)
close