Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable sqlite tests on mac #9408

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion test/Table_Tests/src/Database/Main.enso
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from Standard.Base import all
import Standard.Base.System.Platform.OS

from Standard.Test import Test

Expand All @@ -9,7 +10,8 @@ import project.Database.Redshift_Spec

add_specs suite_builder =
Codegen_Spec.add_specs suite_builder
SQLite_Spec.add_specs suite_builder
if Platform.os != OS.Mac_OS then
SQLite_Spec.add_specs suite_builder
Postgres_Spec.add_specs suite_builder
Redshift_Spec.add_specs suite_builder

Expand Down
Loading