Initial attempt at fixing the timezone bug that prevents tquery tests from running on actions

This commit is contained in:
David Dworken 2022-10-22 11:45:04 -07:00
parent 97742cf0eb
commit 1c561f5cc8
2 changed files with 1 additions and 10 deletions

View File

@ -27,4 +27,5 @@ jobs:
sudo apt-get update || true
sudo apt-get install -y zsh fish || true
brew install fish tmux || true
export TZ='America/Los_Angeles' # Force the time zone so that test output is consistent
make test

View File

@ -1622,11 +1622,6 @@ func TestFish(t *testing.T) {
}
func TestTui(t *testing.T) {
if os.Getenv("GITHUB_ACTION") != "" {
t.Skip()
// TODO: run this on actions. Need to fix the timezone bug, see https://github.com/ddworken/hishtory/actions/runs/3277144800/jobs/5394045156
}
// Setup
defer shared.BackupAndRestore(t)()
tester := zshTester{}
@ -1755,11 +1750,6 @@ func captureTerminalOutputWithShellName(t *testing.T, tester shellTester, overri
// TODO: the below, but for fish
func testControlR(t *testing.T, tester shellTester, shellName string) {
if os.Getenv("GITHUB_ACTION") != "" {
t.Skip()
// TODO: run this on actions. Need to fix the timezone bug, see https://github.com/ddworken/hishtory/actions/runs/3277144800/jobs/5394045156
}
// Setup
defer shared.BackupAndRestore(t)()
installHishtory(t, tester, "")