File tree 6 files changed +15
-14
lines changed
6 files changed +15
-14
lines changed Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ Please offer the steps to reproduce your problem/bug
8
8
9
9
# Error log
10
10
11
- Please provide error message or screen shot for better understanding.
11
+ Please provide error message or screen shot for better understanding.
Original file line number Diff line number Diff line change 10
10
strategy :
11
11
fail-fast : false
12
12
matrix :
13
- os : [ubuntu-18.04 , macos-latest, windows-latest]
14
- python-version : ["3.10 "]
13
+ os : [ubuntu-latest , macos-latest, windows-latest]
14
+ python-version : ["3.11.3 "]
15
15
16
16
steps :
17
17
- uses : actions/checkout@v2
26
26
TOXENV : build
27
27
run : |
28
28
pip install -U tox
29
- tox
29
+ tox
Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
checks :
9
- runs-on : ubuntu-18.04
9
+ runs-on : ubuntu-latest
10
10
strategy :
11
11
fail-fast : false
12
12
matrix :
13
- python-version : ["3.10 "]
14
- env : [security, flake8, pylint ]
13
+ python-version : ["3.11.3 "]
14
+ env : [security, flake8]
15
15
16
16
steps :
17
17
- uses : actions/checkout@v2
26
26
TOXENV : ${{ matrix.env }}
27
27
run : |
28
28
pip install -U tox
29
- tox
29
+ tox
Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
tests :
9
- runs-on : ubuntu-18.04
9
+ runs-on : ubuntu-latest
10
10
strategy :
11
11
fail-fast : false
12
12
matrix :
13
- python-version : ["3.10 "]
13
+ python-version : ["3.11.3 "]
14
14
15
15
steps :
16
16
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change 2
2
persistent =no
3
3
jobs =1 # >1 hides results
4
4
suggestion-mode =yes # guess common misconfiguration and emit user-friendly hints
5
- py-version = 3.7.0
5
+ py-version = 3.11.3
6
6
7
7
[MESSAGES CONTROL]
8
8
disable =abstract-method,
@@ -122,4 +122,4 @@ disable=abstract-method,
122
122
useless-super-delegation,
123
123
wildcard-import,
124
124
wrong-import-order,
125
- wrong-import-position
125
+ wrong-import-position
Original file line number Diff line number Diff line change @@ -60,9 +60,10 @@ deps =
60
60
{[testenv]deps}
61
61
scrapy ==2.6.1
62
62
redis ==4.2.2
63
- commands =
63
+ allowlist_externals = sudo
64
+ commands =
64
65
sudo apt-get update
65
- sudo apt-get install redis
66
+ sudo apt-get install -y redis
66
67
sudo systemctl start redis-server
67
68
pip install .
68
69
python -m pytest --cov-report term --cov =scrapy_redis
You can’t perform that action at this time.
0 commit comments