Skip to content

Commit

Permalink
quiet test
Browse files Browse the repository at this point in the history
  • Loading branch information
divi255 committed Jul 19, 2019
1 parent 958d01c commit f65d2c9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/test.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python3

from pathlib import Path

import sys
Expand All @@ -17,7 +19,11 @@
background_queue_worker=0,
background_event_worker=0)

logging.basicConfig(level=logging.DEBUG)
try:
if sys.argv[1] == 'debug':
logging.basicConfig(level=logging.DEBUG)
except:
pass

sys.path.append(Path().absolute().parent.as_posix())

Expand Down

0 comments on commit f65d2c9

Please sign in to comment.