Skip to content

Commit

Permalink
Skip test_testing.test_report_main() on Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
khaeru committed Feb 19, 2024
1 parent 07a8ca2 commit 24a8602
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions sdmx/tests/test_testing.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
import sys

import pytest

from sdmx.testing.report import main


@pytest.mark.skipif(
sys.version_info.minor < 9,
reason="Uses dict() | other, not available in Python 3.8",
)
def test_report_main(tmp_path):
# Function runs
main(tmp_path)
Expand Down

0 comments on commit 24a8602

Please sign in to comment.