Skip to content

Commit be0a456

Browse files
committed
Run pip install --no-build-isolation in examples
1 parent 93fe53a commit be0a456

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/hello-world/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
@nox.session()
99
def test(session: nox.Session):
1010
session.install(SETUPTOOLS_RUST)
11-
session.install(".")
11+
session.install("--no-build-isolation", ".")
1212
session.run("hello-world", *session.posargs)

examples/html-py-ever/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
@nox.session()
99
def test(session: nox.Session):
1010
session.install(SETUPTOOLS_RUST, "pytest", "pytest-benchmark", "beautifulsoup4")
11-
session.install(".")
11+
session.install("--no-build-isolation", ".")
1212
session.run("pytest", *session.posargs)

examples/namespace_package/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
@nox.session()
99
def test(session: nox.Session):
1010
session.install(SETUPTOOLS_RUST, "pytest")
11-
session.install(".")
11+
session.install("--no-build-isolation", ".")
1212
session.run("pytest", *session.posargs)

examples/rust_with_cffi/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
@nox.session()
99
def test(session: nox.Session):
1010
session.install(SETUPTOOLS_RUST, "pytest", "cffi")
11-
session.install(".")
11+
session.install("--no-build-isolation", ".")
1212
session.run("pytest", *session.posargs)

0 commit comments

Comments
 (0)