mirror of
https://github.com/ddworken/hishtory.git
synced 2024-12-23 23:39:02 +01:00
whoops, had the test skipping logic in the wrong order
This commit is contained in:
parent
5496dc3a5e
commit
99794191dc
@ -43,7 +43,7 @@ func RunInteractiveBashCommandsWithoutStrictMode(t *testing.T, script string) (s
|
||||
}
|
||||
|
||||
func TestIntegration(t *testing.T) {
|
||||
if os.Getenv("GITHUB_ACTIONS") == "" {
|
||||
if os.Getenv("GITHUB_ACTIONS") != "" {
|
||||
// TODO: debug why these tests fail on github actions, the error message is:
|
||||
// `bash: cannot set terminal process group (683): Inappropriate ioctl for device\nbash: no job control in this shell`
|
||||
t.Skip()
|
||||
@ -58,7 +58,7 @@ func TestIntegration(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestIntegrationWithNewDevice(t *testing.T) {
|
||||
if os.Getenv("GITHUB_ACTIONS") == "" {
|
||||
if os.Getenv("GITHUB_ACTIONS") != "" {
|
||||
// TODO: debug why these tests fail on github actions, the error message is:
|
||||
// `bash: cannot set terminal process group (683): Inappropriate ioctl for device\nbash: no job control in this shell`
|
||||
t.Skip()
|
||||
|
Loading…
Reference in New Issue
Block a user