Skip to content

Commit

Permalink
Final things
Browse files Browse the repository at this point in the history
  • Loading branch information
jamespfennell committed Feb 12, 2020
1 parent 706e272 commit 39824ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ install:
- docker-compose -p transiter -f docker/docker-compose.yml up -d

script:
#- make containerized-unit-tests
#- make containerized-db-tests
- make containerized-unit-tests
- make containerized-db-tests
- make end-to-end-tests
- docker run --entrypoint black jamespfennell/transiter:latest-ci --check {/transiter/source/transiter,/transiter-ci/tests}

Expand Down
3 changes: 1 addition & 2 deletions tests/endtoend/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ def get_zip():
with zipfile.ZipFile(output_bytes, "w") as zip_file:
for file_name in os.listdir(data_dir):
full_path = os.path.join(data_dir, file_name)
zip_file.write(
full_path, arcname=file_name)
zip_file.write(full_path, arcname=file_name)
return output_bytes.getvalue()


Expand Down

0 comments on commit 39824ac

Please sign in to comment.