add pytest config -- it ignores some borked files
authorJacob Lifshay <programmerjake@gmail.com>
Wed, 11 May 2022 08:21:54 +0000 (01:21 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Wed, 11 May 2022 08:21:54 +0000 (01:21 -0700)
pyproject.toml [new file with mode: 0644]
src/ieee754/add/test_dual.py
src/ieee754/add/test_fpnum.py
src/ieee754/fcvt/test/test_fcvt_pipe_64_32.py
src/ieee754/fpadd/test/test_add16.py
src/ieee754/fpadd/test/test_add64.py
src/ieee754/fpadd/test/test_add_base.py

diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644 (file)
index 0000000..267ae9a
--- /dev/null
@@ -0,0 +1,22 @@
+[tool.pytest.ini_options]
+minversion = "6.0"
+python_classes = ""
+python_functions = ""
+testpaths = ["src/ieee754"]
+required_plugins = ["pytest-xdist>=1.0.0"]
+addopts = [
+    "-n",
+    "auto",
+    "--ignore",
+    "src/ieee754/add/test_dual.py",
+    "--ignore",
+    "src/ieee754/add/test_fpnum.py",
+    "--ignore",
+    "src/ieee754/fcvt/test/test_fcvt_pipe_64_32.py",
+    "--ignore",
+    "src/ieee754/fpadd/test/test_add16.py",
+    "--ignore",
+    "src/ieee754/fpadd/test/test_add64.py",
+    "--ignore",
+    "src/ieee754/fpadd/test/test_add_base.py",
+]
index 15f5c762df9a2e78ede74c8725c3806a022cc2ef..90dd5b1aa84fce933624e70e3c7ee16771ec8fe0 100644 (file)
@@ -1,3 +1,4 @@
+# FIXME: This file is on the pytest ignore list in pyproject.toml because it has borked imports
 from sfpy import Float32
 from nmigen.compat.sim import run_simulation
 from dual_add_experiment import ALU
index 1d018b3f3b0440a89e0f8938ae1f44b2335b8a5d..ef08b62626a0f7a21dc5f24767851b7ac951005c 100644 (file)
@@ -1,3 +1,4 @@
+# FIXME: This file is on the pytest ignore list in pyproject.toml because it has borked imports
 from random import randint
 from nmigen import Module, Signal
 from nmigen.compat.sim import run_simulation
index 0febfe1b68da30dea46d23edf83f55ea0510b5b6..64c613220e8eaf6fe60ec04ac1e8def1cacd1879 100644 (file)
@@ -1,3 +1,4 @@
+# FIXME: This file is on the pytest ignore list in pyproject.toml because it has borked imports
 """ test of FPCVTMuxInOut
 """
 
index a92ccda21100c4386f93fcd6d900656c1ebac147..e8d48e4fa69f39bbc4bc3016b8c91255115d9e0a 100644 (file)
@@ -1,3 +1,4 @@
+# FIXME: This file is on the pytest ignore list in pyproject.toml because it has borked imports
 from operator import add
 
 from nmigen import Module, Signal
index ec16563ead93204f1f6b268e6c163ab321b2d223..2c35dea4906ae9e54eaea83255dd061bc6414eda 100644 (file)
@@ -1,3 +1,4 @@
+# FIXME: This file is on the pytest ignore list in pyproject.toml because it has borked imports
 from nmigen import Module, Signal
 from nmigen.compat.sim import run_simulation
 from operator import add
index 248f719ab793ad0d247accab77ea8dd08e958548..b030c88c87b8bee6d06708d2ea688ad5cf7cbba8 100644 (file)
@@ -1,3 +1,4 @@
+# FIXME: This file is on the pytest ignore list in pyproject.toml because it has borked imports
 from random import randint
 from operator import add