Skip to content

Commit

Permalink
brief moment of focus
Browse files Browse the repository at this point in the history
  • Loading branch information
dzuelke committed Feb 13, 2024
1 parent beb1120 commit 810f7f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/spec/php_concurrency_shared.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

shared_examples "A PHP application for testing WEB_CONCURRENCY behavior" do |series, server|

context "running PHP #{series} and the #{server} web server" do
context "running PHP #{series} and the #{server} web server", :focused => true do
before(:all) do
@app = new_app_with_stack_and_platrepo('test/fixtures/bootopts',
before_deploy: -> { system("composer require --quiet --ignore-platform-reqs php '#{series}.*'") or raise "Failed to require PHP version" },
Expand Down
4 changes: 2 additions & 2 deletions test/spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ def product_hash(hash)
end

RSpec.configure do |config|
config.filter_run focused: true unless ENV['IS_RUNNING_ON_CI']
config.run_all_when_everything_filtered = true
config.filter_run focused: true # unless ENV['IS_RUNNING_ON_CI']
config.run_all_when_everything_filtered = false
config.alias_example_to :fit, focused: true
config.filter_run_excluding :requires_php_on_stack => lambda { |series| !php_on_stack?(series) }
config.filter_run_excluding :stack => lambda { |stack| !stack.include?(ENV['STACK']) }
Expand Down

0 comments on commit 810f7f4

Please sign in to comment.