Skip to content

Commit 3b23655

Browse files
committed
Test in Python 3.10, update dev status classifier
1 parent f3e5cfc commit 3b23655

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
os: [ubuntu-latest, macos-10.15]
10-
python-version: [3.7, 3.8, 3.9]
10+
python-version: ["3.7", "3.8", "3.9", "3.10"]
1111

1212
steps:
1313
- uses: actions/checkout@v2
@@ -20,11 +20,6 @@ jobs:
2020
- name: Install tox
2121
run: pip install tox
2222

23-
- name: Install playwright & browsers
24-
run: |
25-
pip install playwright
26-
python -m playwright install
27-
2823
- name: Run tests
2924
run: tox -e py
3025

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@
1919
url="https://github.com/scrapy-plugins/scrapy-playwright",
2020
packages=["scrapy_playwright"],
2121
classifiers=[
22-
"Development Status :: 1 - Planning",
22+
"Development Status :: 3 - Alpha",
2323
"License :: OSI Approved :: BSD License",
2424
"Programming Language :: Python",
2525
"Programming Language :: Python :: 3.7",
2626
"Programming Language :: Python :: 3.8",
2727
"Programming Language :: Python :: 3.9",
28+
"Programming Language :: Python :: 3.10",
2829
"Framework :: Scrapy",
2930
"Intended Audience :: Developers",
3031
"Topic :: Internet :: WWW/HTTP",

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ deps =
1010
pytest-cov>=2.8
1111
pytest-twisted>=1.11
1212
commands =
13+
playwright install
1314
py.test --reactor=asyncio \
1415
--cov-report=term-missing --cov-report=html --cov-report=xml \
1516
--cov=scrapy_playwright {posargs: scrapy_playwright tests}

0 commit comments

Comments
 (0)