Skip to content

Commit

Permalink
doc: work on usage commands
Browse files Browse the repository at this point in the history
  • Loading branch information
madsbk committed May 24, 2017
1 parent e5fbc24 commit 7beea34
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions benchpress/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@
def _suite_schema():
from os.path import join, realpath, dirname
import json
print join(dirname(realpath(__file__)), "suite_schema.json")
print os.getcwd()
print os.listdir(join(dirname(realpath(__file__))))
import sys
print >> sys.stderr, join(dirname(realpath(__file__)), "suite_schema.json")
print >> sys.stderr, os.getcwd()
print >> sys.stderr, os.listdir(join(dirname(realpath(__file__))))
return json.load(open(join(dirname(realpath(__file__)), "suite_schema.json"), "r"))
suite_schema = _suite_schema()

0 comments on commit 7beea34

Please sign in to comment.