Skip to content

Commit

Permalink
Merge pull request #99 from its-sushant/test-evaluator
Browse files Browse the repository at this point in the history
feat(evaluator): Add diff opts to run evaluator
  • Loading branch information
hastagAB authored Jun 3, 2022
2 parents cf66bee + 85a7442 commit 5071444
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion atarashi/evaluator/evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@

from atarashii import build_scanner_obj

with zipfile.ZipFile('TestFiles.zip', 'r') as zip:
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
CONFIG_PATH = os.path.join(ROOT_DIR, 'TestFiles.zip')
with zipfile.ZipFile(CONFIG_PATH, 'r') as zip:
zip.extractall()


Expand Down

0 comments on commit 5071444

Please sign in to comment.