File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,13 @@ jobs:
33
33
strategy :
34
34
matrix :
35
35
python-version :
36
- - 3.6
37
- - 3.7
38
- - 3.8
39
- - 3.9
36
+ - " 3.6"
37
+ - " 3.7"
38
+ - " 3.8"
39
+ - " 3.9"
40
40
django-version :
41
- - 2.2.*
42
- - 3.1.*
41
+ - " 2.2"
42
+ - " 3.1"
43
43
steps :
44
44
- uses : actions/checkout@v2
45
45
- name : Set up Python ${{ matrix.python-version }}
59
59
- name : Upgrade Python setuptools
60
60
run : python -m pip install --upgrade pip setuptools wheel codecov
61
61
- name : Install Django version ${{ matrix.django-version }}
62
- run : pip install django= =${{ matrix.django-version }}
62
+ run : python -m pip install django~ =${{ matrix.django-version }}
63
63
- name : Run tests
64
64
run : PATH=$PATH:$(pwd)/bin python setup.py test
65
65
- run : codecov
Original file line number Diff line number Diff line change 8
8
from selenium .common .exceptions import WebDriverException
9
9
10
10
11
- @pytest .yield_fixture (scope = "session" )
11
+ @pytest .fixture (scope = "session" )
12
12
def driver ():
13
13
chrome_options = webdriver .ChromeOptions ()
14
14
chrome_options .headless = True
You can’t perform that action at this time.
0 commit comments