Skip to content

Commit

Permalink
Merge pull request #787 from henrykironde/setup-list
Browse files Browse the repository at this point in the history
Setup list
  • Loading branch information
ethanwhite committed Feb 3, 2017
2 parents f12d89f + e735e9f commit 1ea5c48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -41,7 +41,7 @@ def clean_version(v):

includes = [
'xlrd',
'future'
'future',
'pymysql',
'psycopg2',
'sqlite3',
Expand Down
9 changes: 5 additions & 4 deletions test/test_json.py
@@ -1,8 +1,9 @@
import json
from glob import glob


def test_valid_json():
"""Test if all json files are valid"""
for filename in glob("./scripts/*.json"):
with open(filename, "r") as fin:
assert json.load(fin)
"""Test if all json files are valid"""
for filename in glob("./scripts/*.json"):
with open(filename, "r") as fin:
assert json.load(fin)

0 comments on commit 1ea5c48

Please sign in to comment.