Skip to content

Remaining prettier formatting fixes #56

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

Merged
merged 13 commits into from
Apr 22, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Only test long-running tests if CI env var
  • Loading branch information
kddnewton committed Apr 22, 2022
commit b38f7e17058b4edd571a53de64a7d4bf7c7853dd
2 changes: 1 addition & 1 deletion test/idempotency_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

return if ENV["FAST"]
return unless ENV["CI"]
require_relative "test_helper"

module SyntaxTree
Expand Down
2 changes: 1 addition & 1 deletion test/visitor_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require_relative "test_helper"

class VisitorTest < Minitest::Test
unless ENV["FAST"]
if ENV["CI"]
def test_visit_all_nodes
visitor = SyntaxTree::Visitor.new

Expand Down