aboutsummaryrefslogtreecommitdiff
path: root/benchmark/agbenchmark/utils/dependencies/constants.py
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/agbenchmark/utils/dependencies/constants.py')
-rw-r--r--benchmark/agbenchmark/utils/dependencies/constants.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/benchmark/agbenchmark/utils/dependencies/constants.py b/benchmark/agbenchmark/utils/dependencies/constants.py
new file mode 100644
index 000000000..98f60a5e9
--- /dev/null
+++ b/benchmark/agbenchmark/utils/dependencies/constants.py
@@ -0,0 +1,10 @@
+""" Constants for this module. """
+
+# The name of the marker used
+MARKER_NAME = "depends"
+
+# The name of the keyword argument for the marker that contains custom name(s) for the tests
+MARKER_KWARG_ID = "name"
+
+# The name of the keyword argument for the marker that specifies the tests to depend on
+MARKER_KWARG_DEPENDENCIES = "on"