Skip to content

Commit

Permalink
Fix shapes E2E tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cedarbaum committed Oct 30, 2023
1 parent 7eb3140 commit a607c52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions tests/endtoend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ COPY test_periodicupdate.py .
COPY test_servicemaps.py .
COPY test_trips.py .
COPY test_vehicles.py .
COPY test_shapes.py .

ENTRYPOINT ["pytest", "-n", "4"]
6 changes: 2 additions & 4 deletions tests/endtoend/test_shapes.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ class TestShapes:

def test_shape_view(self, install_system_1, system_id, transiter_host,
source_server):
__, realtime_feed_url = install_system_1(
system_id, only_process_full_entities="true")
__, realtime_feed_url = install_system_1(system_id)

source_server.put(
realtime_feed_url,
Expand Down Expand Up @@ -87,8 +86,7 @@ def test_shape_view(self, install_system_1, system_id, transiter_host,

def test_trip_view(self, install_system_1, system_id, transiter_host,
source_server):
__, realtime_feed_url = install_system_1(
system_id, only_process_full_entities="true")
__, realtime_feed_url = install_system_1(system_id)

source_server.put(
realtime_feed_url,
Expand Down

0 comments on commit a607c52

Please sign in to comment.