Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Marangi <[email protected]>
  • Loading branch information
Ansuel committed Apr 28, 2024
1 parent 31576bb commit ecb6c5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ jobs:
pip install build setuptools
# Needed for make check
pip install imp
- name: Checkout
uses: actions/checkout@v4

Expand Down
4 changes: 2 additions & 2 deletions ndiff/ndifftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

import xml.dom.minidom

import imp
from importlib.machinery import SourceFileLoader
dont_write_bytecode = sys.dont_write_bytecode
sys.dont_write_bytecode = True
ndiff = imp.load_source("ndiff", "ndiff.py")
ndiff = SourceFileLoader("ndiff.py", "ndiff")
for x in dir(ndiff):
if not x.startswith("_"):
globals()[x] = getattr(ndiff, x)
Expand Down

0 comments on commit ecb6c5b

Please sign in to comment.