skip file writing tests in CI, for now

This commit is contained in:
i-norden 2021-12-20 13:19:57 -06:00
parent f01dd5d1b7
commit ec421c810b

View File

@ -46,6 +46,10 @@ func init() {
fmt.Println("Skipping statediff test")
os.Exit(0)
}
if os.Getenv("STATEDIFF_DB") != "file" {
fmt.Println("Skipping statediff .sql file writing mode test")
os.Exit(0)
}
}
func TestPushBlockAndState(t *testing.T) {