update import_all test, add some stubs for postgres (#178)

This commit is contained in:
Maxim Kurnikov
2019-09-23 19:47:11 +03:00
committed by GitHub
parent 68aebe2528
commit a85dbff793
11 changed files with 201 additions and 23 deletions

View File

@@ -24,5 +24,5 @@ test_lines: List[str] = []
for package in packages:
test_lines.append('import ' + package)
test_contents = '\n'.join(test_lines)
test_contents = '\n'.join(sorted(test_lines))
print(test_contents)