summaryrefslogtreecommitdiffstats
path: root/scripts/run_integration_tests.sh
blob: d09bd21e74e4c1c1457129d47c27ad148f7950a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

# This is ugly, but older versions of git don't support the GIT_CONFIG_GLOBAL
# env var; the only way to run tests for these old versions is to copy our test
# config file to the actual global location. Move an existing file out of the
# way so that we can restore it at the end.
if test -f ~/.gitconfig; then
  mv ~/.gitconfig ~/.gitconfig.lazygit.bak
fi

cp test/global_git_config ~/.gitconfig

go test pkg/integration/clients/*.go
EXITCODE=$?

if test -f ~/.gitconfig.lazygit.bak; then
  mv ~/.gitconfig.lazygit.bak ~/.gitconfig
fi

exit $EXITCODE