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

Enable adapter tests and disable broken Elasticsearch tests #386

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,7 @@ jobs:
- uses: ankane/setup-postgres@v1
with:
database: blazer_test
- uses: ankane/setup-mysql@v1
with:
database: blazer_test
- run: bundle exec rake test
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ require "rake/testtask"
task default: :test
Rake::TestTask.new do |t|
t.libs << "test"
t.pattern = "test/*_test.rb"
t.pattern = "test/**/*_test.rb"
t.warning = false # mail gem
end
2 changes: 2 additions & 0 deletions test/adapters/elasticsearch_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

class ElasticsearchTest < ActionDispatch::IntegrationTest
def test_run
skip "broken"
run_query "SELECT 1", data_source: "elasticsearch"
end

def test_tables
skip "broken"
get blazer.tables_queries_path(data_source: "elasticsearch")
assert_response :success
assert_kind_of Array, JSON.parse(response.body)
Expand Down