Skip to content

Commit

Permalink
move focus
Browse files Browse the repository at this point in the history
  • Loading branch information
dzuelke committed Feb 14, 2024
1 parent 44d582a commit 0439131
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/spec/blackfire_shared.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'ansi/core'

shared_examples "A PHP application using ext-blackfire and" do |agent|
context "#{agent}", :focused => true do
context "#{agent}" do
["explicitly", "without BLACKFIRE_SERVER_TOKEN", "with default BLACKFIRE_LOG_LEVEL", "implicitly"].each do |mode|
next if mode == "without BLACKFIRE_SERVER_TOKEN" and agent == "blackfireio/integration-heroku" # blackfire buildpack would error on invalid credentials
context "#{mode}" do
Expand Down
2 changes: 1 addition & 1 deletion test/spec/composer-2_spec.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require_relative "spec_helper"

describe "A PHP application intended for Composer 2" do
describe "A PHP application intended for Composer 2", :focused => true do
context "with a composer.lock generated by version 2.2 of Composer" do
it "builds using Composer 2.2" do
new_app_with_stack_and_platrepo('test/fixtures/composer/basic_lock_v2lts').deploy do |app|
Expand Down
2 changes: 1 addition & 1 deletion test/spec/composer_spec.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require_relative "spec_helper"

describe "A PHP application intended for Composer 1", :stack => "heroku-20" do
describe "A PHP application intended for Composer 1", :stack => "heroku-20", :focused => true do
context "with a composer.lock generated by an old version of Composer" do
it "builds using Composer 1.x and prints a notice" do
new_app_with_stack_and_platrepo('test/fixtures/composer/basic_lock_oldv1').deploy do |app|
Expand Down
2 changes: 1 addition & 1 deletion test/spec/newrelic_spec.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require_relative "spec_helper"
require "securerandom"

describe "A PHP application using New Relic", :focused => true do
describe "A PHP application using New Relic" do
["explicitly", "without NEW_RELIC_LICENSE_KEY", "with default NEW_RELIC_LOG_LEVEL", "implicitly"].each do |mode|
context "#{mode}" do
before(:all) do
Expand Down
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", :focused => true do
context "running PHP #{series} and the #{server} web server" 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
2 changes: 1 addition & 1 deletion test/spec/platform_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
manifest_fixtures_subdir = "test/fixtures/platform/builder/manifest"
mkrepo_fixtures_subdir = "test/fixtures/platform/builder/mkrepo"

describe "The PHP Platform Installer", :focused => true do
describe "The PHP Platform Installer" do
describe "composer.json Generator Script" do
Dir.each_child(generator_fixtures_subdir) do |testcase|
it "produces the expected platform composer.json for case #{testcase}" do
Expand Down

0 comments on commit 0439131

Please sign in to comment.