|
317 | 317 | # └── test_top_folder.py |
318 | 318 | # └── test_top_function_t |
319 | 319 | # └── test_top_function_f |
320 | | -# └── nested_folder_one |
| 320 | +# └── z_nested_folder_one |
321 | 321 | # └── test_bottom_folder.py |
322 | 322 | # └── test_bottom_function_t |
323 | 323 | # └── test_bottom_function_f |
|
326 | 326 | TEST_DATA_PATH / "dual_level_nested_folder" / "test_top_folder.py" |
327 | 327 | ) |
328 | 328 |
|
329 | | -test_nested_folder_one_path = ( |
330 | | - TEST_DATA_PATH / "dual_level_nested_folder" / "nested_folder_one" |
| 329 | +test_z_nested_folder_one_path = ( |
| 330 | + TEST_DATA_PATH / "dual_level_nested_folder" / "z_nested_folder_one" |
331 | 331 | ) |
332 | 332 |
|
333 | 333 | test_bottom_folder_path = ( |
334 | 334 | TEST_DATA_PATH |
335 | 335 | / "dual_level_nested_folder" |
336 | | - / "nested_folder_one" |
| 336 | + / "z_nested_folder_one" |
337 | 337 | / "test_bottom_folder.py" |
338 | 338 | ) |
339 | 339 |
|
|
392 | 392 | ], |
393 | 393 | }, |
394 | 394 | { |
395 | | - "name": "nested_folder_one", |
396 | | - "path": os.fspath(test_nested_folder_one_path), |
| 395 | + "name": "z_nested_folder_one", |
| 396 | + "path": os.fspath(test_z_nested_folder_one_path), |
397 | 397 | "type_": "folder", |
398 | | - "id_": os.fspath(test_nested_folder_one_path), |
| 398 | + "id_": os.fspath(test_z_nested_folder_one_path), |
399 | 399 | "children": [ |
400 | 400 | { |
401 | 401 | "name": "test_bottom_folder.py", |
|
412 | 412 | ), |
413 | 413 | "type_": "test", |
414 | 414 | "id_": get_absolute_test_id( |
415 | | - "dual_level_nested_folder/nested_folder_one/test_bottom_folder.py::test_bottom_function_t", |
| 415 | + "dual_level_nested_folder/z_nested_folder_one/test_bottom_folder.py::test_bottom_function_t", |
416 | 416 | test_bottom_folder_path, |
417 | 417 | ), |
418 | 418 | "runID": get_absolute_test_id( |
419 | | - "dual_level_nested_folder/nested_folder_one/test_bottom_folder.py::test_bottom_function_t", |
| 419 | + "dual_level_nested_folder/z_nested_folder_one/test_bottom_folder.py::test_bottom_function_t", |
420 | 420 | test_bottom_folder_path, |
421 | 421 | ), |
422 | 422 | }, |
|
429 | 429 | ), |
430 | 430 | "type_": "test", |
431 | 431 | "id_": get_absolute_test_id( |
432 | | - "dual_level_nested_folder/nested_folder_one/test_bottom_folder.py::test_bottom_function_f", |
| 432 | + "dual_level_nested_folder/z_nested_folder_one/test_bottom_folder.py::test_bottom_function_f", |
433 | 433 | test_bottom_folder_path, |
434 | 434 | ), |
435 | 435 | "runID": get_absolute_test_id( |
436 | | - "dual_level_nested_folder/nested_folder_one/test_bottom_folder.py::test_bottom_function_f", |
| 436 | + "dual_level_nested_folder/z_nested_folder_one/test_bottom_folder.py::test_bottom_function_f", |
437 | 437 | test_bottom_folder_path, |
438 | 438 | ), |
439 | 439 | }, |
|
0 commit comments