Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 20be531

Browse files
committed
Only test long-running tests if CI env var
1 parent 529e096 commit 20be531

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/idempotency_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
return if ENV["FAST"]
3+
return unless ENV["CI"]
44
require_relative "test_helper"
55

66
module SyntaxTree

test/visitor_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require_relative "test_helper"
44

55
class VisitorTest < Minitest::Test
6-
unless ENV["FAST"]
6+
if ENV["CI"]
77
def test_visit_all_nodes
88
visitor = SyntaxTree::Visitor.new
99

0 commit comments

Comments
 (0)