File tree Expand file tree Collapse file tree 3 files changed +24
-0
lines changed
Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -275,6 +275,7 @@ jobs:
275275 3.10
276276 3.11
277277 3.12
278+ 3.13
278279
279280 - uses : Swatinem/rust-cache@v2
280281 with :
Original file line number Diff line number Diff line change 1+ 3.13.0
123.12.6
233.11.10
343.10.15
Original file line number Diff line number Diff line change @@ -50,6 +50,28 @@ fn create_venv() {
5050 context. venv . assert ( predicates:: path:: is_dir ( ) ) ;
5151}
5252
53+ #[ test]
54+ fn create_venv_313 ( ) {
55+ let context = TestContext :: new_with_versions ( & [ "3.13" ] ) ;
56+
57+ uv_snapshot ! ( context. filters( ) , context. venv( )
58+ . arg( context. venv. as_os_str( ) )
59+ . arg( "--python" )
60+ . arg( "3.13" ) , @r###"
61+ success: true
62+ exit_code: 0
63+ ----- stdout -----
64+
65+ ----- stderr -----
66+ Using CPython 3.13.[X] interpreter at: [PYTHON-3.13]
67+ Creating virtual environment at: .venv
68+ Activate with: source .venv/[BIN]/activate
69+ "###
70+ ) ;
71+
72+ context. venv . assert ( predicates:: path:: is_dir ( ) ) ;
73+ }
74+
5375#[ test]
5476fn create_venv_project_environment ( ) -> Result < ( ) > {
5577 let context = TestContext :: new_with_versions ( & [ "3.12" ] ) ;
You can’t perform that action at this time.
0 commit comments