Skip to content

Commit

Permalink
Fixes tests to deal with behavior changes in Python and to get around…
Browse files Browse the repository at this point in the history
… issue Fast-Trips#191
  • Loading branch information
pedrocamargo committed Jul 13, 2021
1 parent a356756 commit f0d7e4f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_maxStopProcessCount.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
import pytest
from fasttrips import Run

EXAMPLE_DIR = os.path.join(os.getcwd(), 'fasttrips', 'Examples', 'Springfield')
EXAMPLE_DIR = os.path.join(os.getcwd(), 'fasttrips', 'Examples', 'Bunny_Hop')

# DIRECTORY LOCATIONS
INPUT_NETWORK = os.path.join(EXAMPLE_DIR, 'networks', 'vermont')
INPUT_DEMAND = os.path.join(EXAMPLE_DIR, 'demand', 'general')
INPUT_CONFIG = os.path.join(EXAMPLE_DIR, 'configs', 'A')
INPUT_NETWORK = os.path.join(EXAMPLE_DIR, 'networks', 'bunny_hop')
INPUT_DEMAND = os.path.join(EXAMPLE_DIR, 'demand', 'backward_bunnies')
INPUT_CONFIG = os.path.join(EXAMPLE_DIR, 'configs', 'base')
OUTPUT_DIR = os.path.join(EXAMPLE_DIR, 'output')

# INPUT FILE LOCATIONS
Expand All @@ -17,7 +17,7 @@

# TEST PARAMETERS
test_mspc = [10, 50, 100]
test_size = 5
test_size = 2

@pytest.fixture(scope='module', params=test_mspc)
def stop_process_count(request):
Expand Down

0 comments on commit f0d7e4f

Please sign in to comment.