File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ nh3==0.2.20 ; python_full_version >= '3.8'
123
123
# via readme-renderer
124
124
nox==2024.4.15 ; python_full_version < '3.8'
125
125
# via cryptography (pyproject.toml)
126
- nox==2024.10 .9 ; python_full_version >= '3.8'
126
+ nox==2025.2 .9 ; python_full_version >= '3.8'
127
127
# via cryptography (pyproject.toml)
128
128
packaging==24.0 ; python_full_version < '3.8'
129
129
# via
Original file line number Diff line number Diff line change 7
7
import glob
8
8
import itertools
9
9
import json
10
+ import os
10
11
import pathlib
11
12
import re
12
13
import sys
@@ -59,7 +60,7 @@ def tests(session: nox.Session) -> None:
59
60
pathlib .Path ("." ) / ".rust-cov" / str (uuid .uuid4 ())
60
61
).absolute ()
61
62
if session .name != "tests-nocoverage" :
62
- rustflags = session . env .get ("RUSTFLAGS" , "" )
63
+ rustflags = os . environ .get ("RUSTFLAGS" , "" )
63
64
assert rustflags is not None
64
65
session .env .update (
65
66
{
@@ -219,7 +220,7 @@ def rust(session: nox.Session) -> None:
219
220
prof_location = (
220
221
pathlib .Path ("." ) / ".rust-cov" / str (uuid .uuid4 ())
221
222
).absolute ()
222
- rustflags = session . env .get ("RUSTFLAGS" , "" )
223
+ rustflags = os . environ .get ("RUSTFLAGS" , "" )
223
224
assert rustflags is not None
224
225
session .env .update (
225
226
{
You can’t perform that action at this time.
0 commit comments