@@ -362,21 +362,18 @@ async fn install_frozen_skip() {
362362 setup_tracing ( ) ;
363363
364364 // Create a project with a local python dependency 'no-build-editable'
365- // and a local conda dependency 'python_rich '
365+ // and a local conda dependency 'simple-package '
366366 let current_platform = Platform :: current ( ) ;
367367 let manifest = format ! (
368368 r#"
369369 [workspace]
370- channels = ["conda-forge"]
371- description = "Add a short description here"
372- name = "pyproject"
370+ channels = ["https://prefix.dev/conda-forge"]
373371 platforms = ["{current_platform}"]
374372 preview = ["pixi-build"]
375- version = "0.1.0"
376373
377374 [dependencies]
378375 python = "*"
379- python_rich = {{ path = "./python " }}
376+ simple-package = {{ path = "./simple-package " }}
380377
381378 [pypi-dependencies]
382379 no-build-editable = {{ path = "./no-build-editable" }}
@@ -388,7 +385,7 @@ async fn install_frozen_skip() {
388385 let workspace_root = PathBuf :: from ( env ! ( "CARGO_WORKSPACE_DIR" ) ) ;
389386
390387 fs_extra:: dir:: copy (
391- workspace_root. join ( "docs/source_files/pixi_workspaces/pixi_build/python " ) ,
388+ workspace_root. join ( "tests/data/pixi-build/simple-package " ) ,
392389 pixi. workspace_path ( ) ,
393390 & fs_extra:: dir:: CopyOptions :: new ( ) ,
394391 )
@@ -403,10 +400,10 @@ async fn install_frozen_skip() {
403400
404401 pixi. update_lock_file ( ) . await . unwrap ( ) ;
405402
406- // Check that neither 'python_rich ' nor 'no-build-editable' are installed when skipped
403+ // Check that neither 'simple-package ' nor 'no-build-editable' are installed when skipped
407404 pixi. install ( )
408405 . with_frozen ( )
409- . with_skipped ( vec ! [ "no-build-editable" . into( ) , "python_rich " . into( ) ] )
406+ . with_skipped ( vec ! [ "no-build-editable" . into( ) , "simple-package " . into( ) ] )
410407 . await
411408 . unwrap ( ) ;
412409
@@ -415,13 +412,13 @@ async fn install_frozen_skip() {
415412 let env = create_uv_environment ( & prefix_path, & cache) ;
416413
417414 assert ! ( !is_pypi_package_installed( & env, "no-build-editable" ) ) ;
418- assert ! ( !is_conda_package_installed( & prefix_path, "python_rich " ) . await ) ;
415+ assert ! ( !is_conda_package_installed( & prefix_path, "simple-package " ) . await ) ;
419416
420- // Check that 'no-build-editable' and 'python_rich ' are installed after a followup normal install
417+ // Check that 'no-build-editable' and 'simple-package ' are installed after a followup normal install
421418 pixi. install ( ) . with_frozen ( ) . await . unwrap ( ) ;
422419
423420 assert ! ( is_pypi_package_installed( & env, "no-build-editable" ) ) ;
424- assert ! ( is_conda_package_installed( & prefix_path, "python_rich " ) . await ) ;
421+ assert ! ( is_conda_package_installed( & prefix_path, "simple-package " ) . await ) ;
425422}
426423
427424#[ tokio:: test( flavor = "multi_thread" , worker_threads = 1 ) ]
0 commit comments