Skip to content

Commit

Permalink
Reduced input height/width in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DrSleep committed Jul 20, 2020
1 parent ad8bd51 commit b672df1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ install:
- pip install -e .
# command to run tests
script:
- pytest
- pytest -v
4 changes: 2 additions & 2 deletions examples/tests/test_get_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ def num_channels():

@pytest.fixture()
def input_height():
return random.randint(33, 320)
return random.randint(33, 128)


@pytest.fixture()
def input_width():
return random.randint(33, 320)
return random.randint(33, 128)


@pytest.mark.parametrize(
Expand Down
4 changes: 2 additions & 2 deletions tests/test_networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ def num_channels():

@pytest.fixture()
def input_height():
return random.randint(33, 320)
return random.randint(33, 128)


@pytest.fixture()
def input_width():
return random.randint(33, 320)
return random.randint(33, 128)


@pytest.mark.parametrize(
Expand Down

0 comments on commit b672df1

Please sign in to comment.