Skip to content

Commit

Permalink
skip async tests on 3.8 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mike0sv committed Jul 11, 2024
1 parent 51dee87 commit dc18981
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/collector/test_app.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import asyncio
import os.path
import sys

import pandas as pd
import pytest
Expand All @@ -17,6 +18,7 @@


@pytest.mark.asyncio
@pytest.mark.skipif(sys.version_info < (3, 10))
async def test_create_collector(
collector_test_client: TestClient, collector_service_config: CollectorServiceConfig, mock_collector_config
):
Expand Down

0 comments on commit dc18981

Please sign in to comment.