* feat: Initial version of temporal invalidation + tests * fix: dont run int tests on CI * fix: dont run int tests on CI * fix: dont run int tests on CI * fix: time of day issue * fix: running non int tests in ci * fix: running non int tests in ci * fix: running non int tests in ci * fix: running non int tests in ci * fix: running non int tests in ci * fix: running non int tests in ci * fix: running non int tests in ci * revert: Tests structural changes * chore: Remove idea file * chore: Get rid of NodesWithEdges class and define a triplet type instead
6 lines
359 B
Python
6 lines
359 B
Python
import sys
|
|
import os
|
|
|
|
# This code adds the project root directory to the Python path, allowing imports to work correctly when running tests.
|
|
# Without this file, you might encounter ModuleNotFoundError when trying to import modules from your project, especially when running tests.
|
|
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__))))
|