We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cec7440 commit 6c79660Copy full SHA for 6c79660
test/fixture.py
@@ -12,7 +12,7 @@
12
13
from super_collections import SuperDict
14
from mkdocs_test import DocProject, MkDocsPage
15
-
+import os
16
17
class MacrosPage(MkDocsPage):
18
"Specific for MkDocs-Macros"
test/test_modules.py
@@ -3,6 +3,12 @@
3
"""
4
5
import os
6
+import sys
7
+
8
+if sys.version_info < (3, 10):
9
+ print("Skipping MkDocs-Test tests: Python 3.10+ required.")
10
+ sys.exit(0)
11
import pytest
from .fixture import MacrosDocProject
0 commit comments