mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
test: manually run gitStorageTest
This way we should see the output and hopefully be able to figure out why that silly test keeps randomly failing. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
1211520ca9
commit
7068e64e49
4 changed files with 12 additions and 5 deletions
3
.github/workflows/linux-bionic-5.9.yml
vendored
3
.github/workflows/linux-bionic-5.9.yml
vendored
|
@ -41,5 +41,6 @@ jobs:
|
|||
# and now run the tests - with Qt 5.9 we can only run the desktop flavor
|
||||
echo "------------------------------------"
|
||||
echo "run tests"
|
||||
cd build
|
||||
cd build/tests
|
||||
xvfb-run --auto-servernum ./TestGitStorage -v2
|
||||
xvfb-run --auto-servernum make check
|
||||
|
|
6
.github/workflows/linux-eoan-5.12.yml
vendored
6
.github/workflows/linux-eoan-5.12.yml
vendored
|
@ -48,7 +48,8 @@ jobs:
|
|||
echo "--------------------------------------------------------------"
|
||||
echo "running tests for mobile"
|
||||
|
||||
cd build-mobile
|
||||
cd build-mobile/tests
|
||||
xvfb-run --auto-servernum ./TestGitStorage -v2
|
||||
xvfb-run --auto-servernum make check
|
||||
|
||||
- name: build Subsurface
|
||||
|
@ -64,6 +65,7 @@ jobs:
|
|||
run: |
|
||||
echo "--------------------------------------------------------------"
|
||||
echo "running tests for desktop"
|
||||
cd build
|
||||
cd build/tests
|
||||
xvfb-run --auto-servernum ./TestGitStorage -v2
|
||||
xvfb-run --auto-servernum make check
|
||||
|
||||
|
|
6
.github/workflows/linux-groovy-5.14.yml
vendored
6
.github/workflows/linux-groovy-5.14.yml
vendored
|
@ -48,7 +48,8 @@ jobs:
|
|||
echo "--------------------------------------------------------------"
|
||||
echo "running tests for mobile"
|
||||
|
||||
cd build-mobile
|
||||
cd build-mobile/tests
|
||||
xvfb-run --auto-servernum ./TestGitStorage -v2
|
||||
xvfb-run --auto-servernum make check
|
||||
|
||||
- name: build Subsurface
|
||||
|
@ -64,6 +65,7 @@ jobs:
|
|||
run: |
|
||||
echo "--------------------------------------------------------------"
|
||||
echo "running tests for desktop"
|
||||
cd build
|
||||
cd build/tests
|
||||
xvfb-run --auto-servernum ./TestGitStorage -v2
|
||||
xvfb-run --auto-servernum make check
|
||||
|
||||
|
|
2
.github/workflows/mac.yml
vendored
2
.github/workflows/mac.yml
vendored
|
@ -39,6 +39,7 @@ jobs:
|
|||
export QT_ROOT=${GITHUB_WORKSPACE}/Qt/5.13.0/clang_64
|
||||
export QT_QPA_PLATFORM_PLUGIN_PATH=$QT_ROOT/plugins
|
||||
cd ${GITHUB_WORKSPACE}/build-mobile/tests
|
||||
./TestGitStorage -v2
|
||||
make check
|
||||
|
||||
- name: build Subsurface
|
||||
|
@ -65,5 +66,6 @@ jobs:
|
|||
export QT_ROOT=${GITHUB_WORKSPACE}/Qt/5.13.0/clang_64
|
||||
export QT_QPA_PLATFORM_PLUGIN_PATH=$QT_ROOT/plugins
|
||||
cd ${GITHUB_WORKSPACE}/build/tests
|
||||
./TestGitStorage -v2
|
||||
make check
|
||||
|
||||
|
|
Loading…
Reference in a new issue