Skip to content

Commit

Permalink
Change travis configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
ahopkins committed Sep 25, 2017
1 parent f307a23 commit a9dab88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ install:

# command to run tests, e.g. python setup.py test
script:
- pytest
- python -m pytest test
2 changes: 1 addition & 1 deletion merkava/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
async def get_config(app, loop):
if len(sys.argv) > 1:
path = sys.argv[1]
if os.path.isdir(path):
if os.path.isfile(path):
config = configparser.ConfigParser()
config.read(path)
app.config.update(config['Storage'])
Expand Down

0 comments on commit a9dab88

Please sign in to comment.