ICON Community Interface 0.4.0
Loading...
Searching...
No Matches
test_sys_path.py
Go to the documentation of this file.
1from dummy_module import dummy
2import sys
3
4dummy()
5
6# check for duplicate entries in sys.path
7assert len(sys.path) == len(set(sys.path)), "Duplicate entry in sys.path detected!"