File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 65
65
- name : Build and Check Rust unit tests and integration tests all pass
66
66
run : |
67
67
git submodule update --init
68
- cargo install cargo-nextest
69
- make build
70
- make test
68
+ cargo build --workspace
69
+ cargo test
71
70
72
71
- name : Set up Python
73
72
uses : actions/setup-python@v3
98
97
- name : Build and Check Rust unit tests and integration tests all pass on Windows
99
98
run : |
100
99
git submodule update --init
101
- cargo install cargo-nextest
102
- make build
103
- make test
100
+ cargo build --workspace
101
+ cargo test
Original file line number Diff line number Diff line change @@ -31,6 +31,8 @@ pub fn get_test_environment(test_name: &str) -> TestEnvironment {
31
31
. expect ( "Failed to remove previous logs directory" ) ;
32
32
}
33
33
34
+ // Caution: Storing ip_counter in the tempdir result in different test binaries using duplicate loopback IP addresses,
35
+ // so we store the ip_counter file in the harness/logs directory.
34
36
get_test_environment_with_counter_file ( test_name, COUNTER_FILE )
35
37
}
36
38
You can’t perform that action at this time.
0 commit comments