Skip to content

Commit e2d4606

Browse files
authored
[Test] Now integrated test will run after other tests (#6183)
* MOVE INTERGRATED TEST TO THE LAST * ANOTHER WAY TO WORKOUT * FIX CMAKELISTS
1 parent a4ef7e8 commit e2d4606

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/test.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,16 @@ jobs:
4848
run: |
4949
cmake --build build -j8
5050
cmake --install build
51-
- name: Test
51+
- name: Unit Test
5252
env:
5353
GTEST_COLOR: 'yes'
5454
OMP_NUM_THREADS: '2'
5555
run: |
56-
cmake --build build --target test ARGS="-V --timeout 1700"
56+
cmake --build build --target test ARGS="-V --timeout 1700 -E integrated_test"
57+
- name: Integrated Test
58+
env:
59+
GTEST_COLOR: 'yes'
60+
OMP_NUM_THREADS: '2'
61+
run: |
62+
cmake --build build --target test ARGS="-V --timeout 1700 -R integrated_test"
63+

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -797,4 +797,4 @@ install(PROGRAMS ${ABACUS_BIN_PATH}
797797

798798
if(ENABLE_COVERAGE)
799799
coverage_evaluate()
800-
endif()
800+
endif()

0 commit comments

Comments
 (0)