Skip to content

Commit

Permalink
BigQuery: Use in-place development install for system and snippet tests.
Browse files Browse the repository at this point in the history
This will allow the use of the `-r` parameter for nox to work properly.
  • Loading branch information
tswast committed Oct 16, 2017
1 parent 1002c2e commit 397cf62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bigquery/nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def system_tests(session, python_version):
os.path.join('..', 'storage'),
os.path.join('..', 'test_utils'),
)
session.install('.')
session.install('-e', '.')

# Run py.test against the system tests.
session.run(
Expand Down Expand Up @@ -109,7 +109,7 @@ def snippets_tests(session, python_version):
os.path.join('..', 'storage'),
os.path.join('..', 'test_utils'),
)
session.install('.')
session.install('-e', '.')

# Run py.test against the system tests.
session.run(
Expand Down

0 comments on commit 397cf62

Please sign in to comment.