@@ -4,15 +4,16 @@ This directory contains Feature Integration Tests for the S-CORE project. It inc
44
55## Structure
66
7- - ` python_test_cases /` — Python-based integration test cases
7+ - ` test_cases /` — Python-based integration test cases
88 - ` conftest.py ` — Pytest configuration and fixtures
99 - ` fit_scenario.py ` — Base scenario class
1010 - ` requirements.txt ` — Python dependencies
1111 - ` BUILD ` — Bazel build and test definitions
1212 - ` tests/ ` — Test cases (e.g., orchestration with persistency)
13- - ` rust_test_scenarios/ ` — Rust-based integration test scenarios
14- - ` src/ ` — Rust source code for test scenarios
15- - ` BUILD ` — Bazel build definitions
13+ - ` test_scenarios/ ` — Location of test scenarios
14+ - ` rust/ ` — Rust-based integration test scenarios
15+ - ` src/ ` — Rust source code for test scenarios
16+ - ` BUILD ` — Bazel build definitions
1617
1718## Running Tests
1819
@@ -21,25 +22,25 @@ This directory contains Feature Integration Tests for the S-CORE project. It inc
2122Python tests are managed with Bazel and Pytest. To run the main test target:
2223
2324``` sh
24- bazel test //feature_integration_tests/python_test_cases :fit
25+ bazel test //feature_integration_tests/test_cases :fit
2526```
2627
2728### Rust Test Scenarios
2829
29- Rust test scenarios are defined in ` rust_test_scenarios /src/scenarios` . Build and run them using Bazel:
30+ Rust test scenarios are defined in ` test_scenarios/rust /src/scenarios` . Build and run them using Bazel:
3031
3132``` sh
32- bazel build //feature_integration_tests/rust_test_scenarios
33+ bazel build //feature_integration_tests/test_scenarios/rust: rust_test_scenarios
3334```
3435
3536``` sh
36- bazel run //feature_integration_tests/rust_test_scenarios -- --list-scenarios
37+ bazel run //feature_integration_tests/test_scenarios/rust: rust_test_scenarios -- --list-scenarios
3738```
3839
3940## Updating Python Requirements
4041
4142To update Python dependencies:
4243
4344``` sh
44- bazel run //feature_integration_tests/python_test_cases :requirements.update
45+ bazel run //feature_integration_tests/test_cases :requirements.update
4546```
0 commit comments