Skip to content

Commit 02ecd27

Browse files
authored
Add pytest to requirements
1 parent 557755a commit 02ecd27

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

requirements.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ pyTMD==2.0.5
1414
pandas==1.5.3
1515
pygeos==0.14
1616
pyproj==3.4.1
17+
pytest
1718
pytz==2023.3
1819
rasterio==1.3.4
1920
seaborn==0.13.0

setup.py

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,6 @@
66
# Where are we?
77
IS_SANDBOX = "sandbox" in os.getenv("JUPYTER_IMAGE", default="")
88

9-
tests_require = [
10-
"pytest",
11-
"pytest-dependency",
12-
"pytest-cov",
13-
]
14-
15-
extras = {
16-
"test": tests_require,
17-
}
18-
199
# What packages are required for this module to be executed?
2010
REQUIRED = [
2111
"aiohttp",
@@ -35,6 +25,7 @@
3525
"pygeos",
3626
"pyproj",
3727
"pyTMD>=2.0.0",
28+
"pytest",
3829
"pytz",
3930
"rasterio",
4031
"setuptools-scm",
@@ -68,8 +59,6 @@
6859
"python_requires": REQUIRES_PYTHON,
6960
"url": URL,
7061
"install_requires": REQUIRED if not IS_SANDBOX else [],
71-
"tests_require": tests_require,
72-
"extras_require": extras,
7362
"packages": find_packages(),
7463
"include_package_data": True,
7564
"license": "Apache License 2.0",

0 commit comments

Comments
 (0)