Skip to content

Commit

Permalink
test: try pytest.importorskip on crud module tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNewThinkTank committed Aug 24, 2024
1 parent 93a60e6 commit 85d4357
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/test_insert.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@

pytestmark = pytest.mark.skip(reason="Skip until ModuleNotFoundError is fixed")

from src.crud.insert import insert_log # , insert_specific_log
insert_log = pytest.importorskip("src.crud.insert.insert_log")

# from src.crud.insert import insert_log # , insert_specific_log


def setup():
Expand Down

0 comments on commit 85d4357

Please sign in to comment.