File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 31
31
run : uv run pytest --junitxml=junit/test-results-${{ matrix.python-version }}.xml
32
32
33
33
- name : Upload pytest test results
34
- uses : actions/upload-artifact@v3
34
+ uses : actions/upload-artifact@v4
35
35
with :
36
36
name : pytest-results-${{ matrix.python-version }}
37
37
path : junit/test-results-${{ matrix.python-version }}.xml
Original file line number Diff line number Diff line change @@ -1604,7 +1604,7 @@ def setup(
1604
1604
help = "Use certifi instead of builtin SSL certificates." ,
1605
1605
),
1606
1606
] = False ,
1607
- db_dir : Annotated [
1607
+ dir : Annotated [ # noqa: A002
1608
1608
Path | None ,
1609
1609
typer .Option (
1610
1610
"--dir" ,
@@ -1662,7 +1662,7 @@ def setup(
1662
1662
logger .setLevel (logging .INFO )
1663
1663
1664
1664
# temp file and download config
1665
- cw_dir = Path (db_dir ).expanduser ().absolute () if db_dir else Path .cwd ()
1665
+ cw_dir = Path (dir ).expanduser ().absolute () if dir else Path .cwd ()
1666
1666
cw_dir .mkdir (parents = True , exist_ok = True )
1667
1667
chdir (cw_dir )
1668
1668
tempfile .tempdir = cw_dir .as_posix ()
You can’t perform that action at this time.
0 commit comments