File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -24,19 +24,19 @@ jobs:
24
24
run : tox
25
25
env :
26
26
TOXENV : ${{ matrix.toxenv }}
27
- - name : Coveralls Parallel
28
- uses : coverallsapp/github-action@master
29
- with :
30
- github-token : ${{ secrets.github_token }}
31
- flag-name : run-${{ matrix.python-version }}
32
- parallel : true
33
27
34
28
coverage :
35
- needs : build
36
29
runs-on : ubuntu-latest
37
- steps :
38
- - name : Coveralls Finished
39
- uses : coverallsapp/github-action@master
30
+ - uses : actions/checkout@v2
31
+ - name : Set up Python 3.8
32
+ uses : actions/setup-python@v2
40
33
with :
41
- github-token : ${{ secrets.github_token }}
42
- parallel-finished : true
34
+ python-version : 3.8
35
+ - name : Install test dependencies
36
+ run : |
37
+ python -m pip install --upgrade pip
38
+ pip install .[test]
39
+ - name : Test with coverage
40
+ run : pytest --cov=gql --cov-report=xml tests
41
+ - name : Upload coverage to Codecov
42
+ uses : codecov/codecov-action@v1
You can’t perform that action at this time.
0 commit comments