From 397cf6216de6f1111b6baa2ceaaa51086cf8908d Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Mon, 16 Oct 2017 10:37:37 -0700 Subject: [PATCH] BigQuery: Use in-place development install for system and snippet tests. This will allow the use of the `-r` parameter for nox to work properly. --- bigquery/nox.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bigquery/nox.py b/bigquery/nox.py index b0271c954e0e..2d5772882fbe 100644 --- a/bigquery/nox.py +++ b/bigquery/nox.py @@ -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( @@ -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(