Skip to content

Commit

Permalink
tests: remove editable install in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ankiaga committed Jan 30, 2024
1 parent b15ed14 commit b9fe6f1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def compliance_test_13(session):
)

session.install("mock")
session.install("-e", ".[tracing]")
session.install(".[tracing]")
session.run("pip", "install", "sqlalchemy>=1.1.13,<=1.3.24", "--force-reinstall")
session.run("pip", "install", "opentelemetry-api<=1.10", "--force-reinstall")
session.run("pip", "install", "opentelemetry-sdk<=1.10", "--force-reinstall")
Expand Down Expand Up @@ -191,7 +191,7 @@ def compliance_test_14(session):
)

session.install("mock")
session.install("-e", ".[tracing]")
session.install(".[tracing]")
session.run("pip", "install", "sqlalchemy>=1.4,<2.0", "--force-reinstall")
session.run("python", "create_test_database.py")
session.run(
Expand Down Expand Up @@ -231,7 +231,7 @@ def compliance_test_20(session):
)

session.install("mock")
session.install("-e", ".[tracing]")
session.install(".[tracing]")
session.run("pip", "install", "opentelemetry-api<=1.10", "--force-reinstall")
session.run("python", "create_test_database.py")

Expand All @@ -257,7 +257,7 @@ def unit(session):
# Run SQLAlchemy dialect compliance test suite with OpenTelemetry.
session.install("pytest")
session.install("mock")
session.install("-e", ".")
session.install(".")
session.install("opentelemetry-api==1.1.0")
session.install("opentelemetry-sdk==1.1.0")
session.install("opentelemetry-instrumentation==0.20b0")
Expand Down Expand Up @@ -292,7 +292,7 @@ def _migration_test(session):
session.run("pip", "install", "sqlalchemy>=1.3.11,<2.0", "--force-reinstall")

session.install("pytest")
session.install("-e", ".")
session.install(".")
session.install("alembic")

session.run("python", "create_test_database.py")
Expand Down Expand Up @@ -360,7 +360,7 @@ def snippets(session):
session.install(
"git+https://github.com/googleapis/python-spanner.git#egg=google-cloud-spanner"
)
session.install("-e", ".")
session.install(".")
session.run("python", "create_test_database.py")
session.run(
"py.test",
Expand Down

0 comments on commit b9fe6f1

Please sign in to comment.