We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d86e1e commit 6d9e3c8Copy full SHA for 6d9e3c8
2 files changed
pyproject.toml
@@ -18,7 +18,7 @@ build-backend = "setuptools.build_meta"
18
build-verbosity = "1"
19
20
test-command = "python -m PyOpenColorIOTests.OpenColorIOTestSuite"
21
-test-requires = ["numpy", "pytest"]
+test-requires = ["numpy"]
22
23
manylinux-x86_64-image = "manylinux2014"
24
manylinux-i686-image = "manylinux2014"
pytest.ini
@@ -0,0 +1,11 @@
1
+# TODO: To be removed after python 2 is no longer being used by this project.
2
+# This is a temporary but necessary pytest config file to be replaced by pyproject.toml.
3
+
4
+[pytest]
5
+minversion = 6.0
6
+addopts = --disable-warnings
7
+python_files = *Test.py
8
+python_classes = Test
9
+python_functions = test_*
10
+testpaths =
11
+ tests/python
0 commit comments