Skip to content

Commit

Permalink
dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Dec 7, 2023
1 parent f7ff963 commit 67c7ab5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:

- name: Run fake GCS server
run: |
docker run -d -p 5050:4443 -v storage_data:/storage fsouza/fake-gcs-server -scheme http
docker run -d -p 4443:4443 -v storage_data:/storage fsouza/fake-gcs-server -scheme http
- name: Test fake GCS
run:
Expand Down
2 changes: 1 addition & 1 deletion tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# Use local fake server as outlined here:
# https://github.com/fsouza/fake-gcs-server
os.environ["STORAGE_EMULATOR_HOST"] = "http://localhost:5050"
os.environ["STORAGE_EMULATOR_HOST"] = "http://localhost:4443"


class TestStorage(TestStorageBase):
Expand Down

0 comments on commit 67c7ab5

Please sign in to comment.