Skip to content

Commit 7cf8fa1

Browse files
committed
Update snapshots
1 parent b1860da commit 7cf8fa1

File tree

8 files changed

+28
-28
lines changed

8 files changed

+28
-28
lines changed

rye/tests/common/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ toolchain = "cpython@3.12.6"
6767
// build info to make sure we cover our grounds here.
6868
for (version, build_info) in [
6969
("cpython@3.8.20", false),
70-
("cpython@3.11.10", true),
71-
("cpython@3.12.6", false),
70+
("cpython@3.11.11", true),
71+
("cpython@3.12.8", false),
7272
("pypy@3.10.13", false),
7373
] {
7474
if home.join("py").join(version).is_dir() {

rye/tests/test_add.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fn test_add_flask() {
1616
exit_code: 0
1717
----- stdout -----
1818
Initializing new virtualenv in [TEMP_PATH]/project/.venv
19-
Python version: cpython@3.12.6
19+
Python version: cpython@3.12.8
2020
Added flask>=3.0.0 as regular dependency
2121
Added colorama>=0.4.6 as regular dependency
2222
Reusing already existing virtualenv
@@ -59,7 +59,7 @@ fn test_add_flask_dotenv() {
5959
exit_code: 0
6060
----- stdout -----
6161
Initializing new virtualenv in [TEMP_PATH]/project/.venv
62-
Python version: cpython@3.12.6
62+
Python version: cpython@3.12.8
6363
Added flask[dotenv]>=3.0.0 as regular dependency
6464
Added colorama>=0.4.6 as regular dependency
6565
Reusing already existing virtualenv
@@ -112,7 +112,7 @@ fn test_add_from_find_links() {
112112
exit_code: 0
113113
----- stdout -----
114114
Initializing new virtualenv in [TEMP_PATH]/project/.venv
115-
Python version: cpython@3.12.6
115+
Python version: cpython@3.12.8
116116
Added tqdm>=4.66.1 as regular dependency
117117
Added colorama>=0.4.6 as regular dependency
118118
Reusing already existing virtualenv
@@ -150,7 +150,7 @@ fn test_add_flask_wrong_venv_exported() {
150150
exit_code: 0
151151
----- stdout -----
152152
Initializing new virtualenv in [TEMP_PATH]/project/.venv
153-
Python version: cpython@3.12.6
153+
Python version: cpython@3.12.8
154154
Added flask==3.0.0 as regular dependency
155155
Added colorama>=0.4.6 as regular dependency
156156
Reusing already existing virtualenv
@@ -185,7 +185,7 @@ fn test_add_explicit_version_or_url() {
185185
exit_code: 0
186186
----- stdout -----
187187
Initializing new virtualenv in [TEMP_PATH]/project/.venv
188-
Python version: cpython@3.12.6
188+
Python version: cpython@3.12.8
189189
Added werkzeug==3.0.0 as regular dependency
190190
Reusing already existing virtualenv
191191
Generating production lockfile: [TEMP_PATH]/project/requirements.lock
@@ -234,7 +234,7 @@ fn test_add_dev() {
234234
exit_code: 0
235235
----- stdout -----
236236
Initializing new virtualenv in [TEMP_PATH]/project/.venv
237-
Python version: cpython@3.12.6
237+
Python version: cpython@3.12.8
238238
Added flask>=3.0.0 as dev dependency
239239
Added colorama>=0.4.6 as dev dependency
240240
Reusing already existing virtualenv

rye/tests/test_cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fn test_dotenv() {
2626
exit_code: 0
2727
----- stdout -----
2828
Initializing new virtualenv in [TEMP_PATH]/project/.venv
29-
Python version: cpython@3.12.6
29+
Python version: cpython@3.12.8
3030
Generating production lockfile: [TEMP_PATH]/project/requirements.lock
3131
Generating dev lockfile: [TEMP_PATH]/project/requirements-dev.lock
3232
Installing dependencies

rye/tests/test_init.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fn test_init_lib() {
2222
exit_code: 0
2323
----- stdout -----
2424
Initializing new virtualenv in [TEMP_PATH]/project/.venv
25-
Python version: cpython@3.12.6
25+
Python version: cpython@3.12.8
2626
Generating production lockfile: [TEMP_PATH]/project/requirements.lock
2727
Generating dev lockfile: [TEMP_PATH]/project/requirements-dev.lock
2828
Installing dependencies
@@ -71,7 +71,7 @@ fn test_init_default() {
7171
exit_code: 0
7272
----- stdout -----
7373
Initializing new virtualenv in [TEMP_PATH]/project/.venv
74-
Python version: cpython@3.12.6
74+
Python version: cpython@3.12.8
7575
Generating production lockfile: [TEMP_PATH]/project/requirements.lock
7676
Generating dev lockfile: [TEMP_PATH]/project/requirements-dev.lock
7777
Installing dependencies
@@ -121,7 +121,7 @@ fn test_init_script() {
121121
exit_code: 0
122122
----- stdout -----
123123
Initializing new virtualenv in [TEMP_PATH]/project/.venv
124-
Python version: cpython@3.12.6
124+
Python version: cpython@3.12.8
125125
Generating production lockfile: [TEMP_PATH]/project/requirements.lock
126126
Generating dev lockfile: [TEMP_PATH]/project/requirements-dev.lock
127127
Installing dependencies

rye/tests/test_scripts.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fn test_basic_script() {
2424
2525
----- stderr -----
2626
Initializing new virtualenv in [TEMP_PATH]/project/.venv
27-
Python version: cpython@3.12.6
27+
Python version: cpython@3.12.8
2828
"###);
2929

3030
rye_cmd_snapshot!(space.rye_cmd().arg("run"), @r###"

rye/tests/test_sync.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fn test_empty_sync() {
1515
exit_code: 0
1616
----- stdout -----
1717
Initializing new virtualenv in [TEMP_PATH]/project/.venv
18-
Python version: cpython@3.12.6
18+
Python version: cpython@3.12.8
1919
Generating production lockfile: [TEMP_PATH]/project/requirements.lock
2020
Generating dev lockfile: [TEMP_PATH]/project/requirements-dev.lock
2121
Installing dependencies
@@ -54,7 +54,7 @@ fn test_add_and_sync_no_auto_sync() {
5454
exit_code: 0
5555
----- stdout -----
5656
Initializing new virtualenv in [TEMP_PATH]/project/.venv
57-
Python version: cpython@3.12.6
57+
Python version: cpython@3.12.8
5858
Added flask==3.0.0 as regular dependency
5959
Added colorama>=0.4.6 as regular dependency
6060
@@ -96,7 +96,7 @@ fn test_add_autosync() {
9696
exit_code: 0
9797
----- stdout -----
9898
Initializing new virtualenv in [TEMP_PATH]/project/.venv
99-
Python version: cpython@3.12.6
99+
Python version: cpython@3.12.8
100100
Added flask==3.0.0 as regular dependency
101101
Added colorama>=0.4.6 as regular dependency
102102
Reusing already existing virtualenv
@@ -139,7 +139,7 @@ fn test_autosync_remember() {
139139
exit_code: 0
140140
----- stdout -----
141141
Initializing new virtualenv in [TEMP_PATH]/project/.venv
142-
Python version: cpython@3.12.6
142+
Python version: cpython@3.12.8
143143
Generating production lockfile: [TEMP_PATH]/project/requirements.lock
144144
Generating dev lockfile: [TEMP_PATH]/project/requirements-dev.lock
145145
Installing dependencies
@@ -302,7 +302,7 @@ fn test_exclude_hashes() {
302302
exit_code: 0
303303
----- stdout -----
304304
Initializing new virtualenv in [TEMP_PATH]/project/.venv
305-
Python version: cpython@3.12.6
305+
Python version: cpython@3.12.8
306306
Generating production lockfile: [TEMP_PATH]/project/requirements.lock
307307
Generating dev lockfile: [TEMP_PATH]/project/requirements-dev.lock
308308
Installing dependencies
@@ -353,7 +353,7 @@ fn test_lockfile() {
353353
exit_code: 0
354354
----- stdout -----
355355
Initializing new virtualenv in [TEMP_PATH]/project/.venv
356-
Python version: cpython@3.12.6
356+
Python version: cpython@3.12.8
357357
Added anyio==4.0.0 as regular dependency
358358
Reusing already existing virtualenv
359359
Generating production lockfile: [TEMP_PATH]/project/requirements.lock
@@ -429,7 +429,7 @@ fn test_generate_hashes() {
429429
exit_code: 0
430430
----- stdout -----
431431
Initializing new virtualenv in [TEMP_PATH]/project/.venv
432-
Python version: cpython@3.12.6
432+
Python version: cpython@3.12.8
433433
Generating production lockfile: [TEMP_PATH]/project/requirements.lock
434434
Generating dev lockfile: [TEMP_PATH]/project/requirements-dev.lock
435435
Installing dependencies

rye/tests/test_test.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ fn test_basic_tool_behavior() {
6464
exit_code: 1
6565
----- stdout -----
6666
Initializing new virtualenv in [TEMP_PATH]/project/.venv
67-
Python version: cpython@3.12.6
67+
Python version: cpython@3.12.8
6868
Generating production lockfile: [TEMP_PATH]/project/requirements.lock
6969
Generating dev lockfile: [TEMP_PATH]/project/requirements-dev.lock
7070
Installing dependencies
7171
Done!
7272
Running tests for foo ([TEMP_PATH]/project)
7373
============================= test session starts =============================
74-
platform [PLATFORM] -- Python 3.12.6, pytest-7.4.3, pluggy-1.3.0
74+
platform [PLATFORM] -- Python 3.12.8, pytest-7.4.3, pluggy-1.3.0
7575
rootdir: [TEMP_PATH]/project
7676
collected 2 items
7777
@@ -108,7 +108,7 @@ fn test_basic_tool_behavior() {
108108
----- stdout -----
109109
Running tests for child-dep ([TEMP_PATH]/project/child-dep)
110110
============================= test session starts =============================
111-
platform [PLATFORM] -- Python 3.12.6, pytest-7.4.3, pluggy-1.3.0
111+
platform [PLATFORM] -- Python 3.12.8, pytest-7.4.3, pluggy-1.3.0
112112
rootdir: [TEMP_PATH]/project/child-dep
113113
collected 2 items
114114
@@ -128,7 +128,7 @@ fn test_basic_tool_behavior() {
128128
129129
Running tests for foo ([TEMP_PATH]/project)
130130
============================= test session starts =============================
131-
platform [PLATFORM] -- Python 3.12.6, pytest-7.4.3, pluggy-1.3.0
131+
platform [PLATFORM] -- Python 3.12.8, pytest-7.4.3, pluggy-1.3.0
132132
rootdir: [TEMP_PATH]/project
133133
collected 2 items
134134

rye/tests/test_tools.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ fn test_basic_tool_behavior() {
4040
- pycowsay
4141
4242
----- stderr -----
43-
Using Python 3.11.10 environment at [RYE_HOME]/tools/pycowsay
43+
Using Python 3.11.11 environment at [RYE_HOME]/tools/pycowsay
4444
Resolved 1 package in [EXECUTION_TIME]
4545
Prepared 1 package in [EXECUTION_TIME]
4646
Installed 1 package in [EXECUTION_TIME]
@@ -69,7 +69,7 @@ fn test_basic_tool_behavior() {
6969
success: true
7070
exit_code: 0
7171
----- stdout -----
72-
pycowsay 0.0.0.2 (cpython@3.11.10)
72+
pycowsay 0.0.0.2 (cpython@3.11.11)
7373
7474
----- stderr -----
7575
"###);
@@ -79,13 +79,13 @@ fn test_basic_tool_behavior() {
7979
.env("UV_CACHE_DIR", cache_dir.path())
8080
.arg("toolchain")
8181
.arg("remove")
82-
.arg("cpython@3.11.10"), @r###"
82+
.arg("cpython@3.11.11"), @r###"
8383
success: false
8484
exit_code: 1
8585
----- stdout -----
8686
8787
----- stderr -----
88-
error: toolchain cpython@3.11.10 is still in use by tool pycowsay
88+
error: toolchain cpython@3.11.11 is still in use by tool pycowsay
8989
"###);
9090

9191
rye_cmd_snapshot!(

0 commit comments

Comments
 (0)