Skip to content

Instantly share code, notes, and snippets.

@sllynn
Created August 19, 2021 11:55
Show Gist options
  • Save sllynn/fde1213cbe8881478d3ac925541de679 to your computer and use it in GitHub Desktop.
Save sllynn/fde1213cbe8881478d3ac925541de679 to your computer and use it in GitHub Desktop.
Reload a python module
import sys
try:
sys.modules.pop("tests.test_advanced")
from tests.test_advanced import AdvancedTestSuite
except KeyError as e:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment