We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4ef7e8 commit e2d4606Copy full SHA for e2d4606
.github/workflows/test.yml
@@ -48,9 +48,16 @@ jobs:
48
run: |
49
cmake --build build -j8
50
cmake --install build
51
- - name: Test
+ - name: Unit Test
52
env:
53
GTEST_COLOR: 'yes'
54
OMP_NUM_THREADS: '2'
55
56
- cmake --build build --target test ARGS="-V --timeout 1700"
+ 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
@@ -797,4 +797,4 @@ install(PROGRAMS ${ABACUS_BIN_PATH}
797
798
if(ENABLE_COVERAGE)
799
coverage_evaluate()
800
-endif()
+endif()
0 commit comments