Skip to content

Commit

Permalink
Fix the CI (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry authored Oct 7, 2018
1 parent ee2495f commit 6cf6c83
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ tc: bin/phpunit
.PHONY: tm
tm: ## Runs Infection
tm: $(TU_BOX_DEPS)
$(PHPNOGC) bin/infection
$(PHPNOGC) bin/infection --only-covered

.PHONY: e2e
e2e: ## Runs all the end-to-end tests
Expand Down
4 changes: 2 additions & 2 deletions doc/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ binary files, the regular file will take precedence.

### Force auto-discovery (`force-autodiscovery`)

The `auto-discovery` (`bool` default `false`) setting forces Box to attempt to find which files to include even though
you are using the [`directories`][directories] or [`finder`][finder] setting.
The `force-autodiscovery` (`bool` default `false`) setting forces Box to attempt to find which files to include even
though you are using the [`directories`][directories] or [`finder`][finder] setting.

When Box tries to find which files to include, it may remove some files such as readmes or test files. If however you
are using the [`directories`][directories] or [`finder`][finder], Box will _append_ the found files to the ones you
Expand Down
4 changes: 4 additions & 0 deletions tests/Console/Command/CompileTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3010,6 +3010,10 @@ public function test_it_skips_the_compression_when_in_dev_mode(): void

public function test_it_can_generate_a_PHAR_with_docker(): void
{
if (extension_loaded('xdebug')) {
$this->markTestSkipped('Skipping this test since xdebug has an include wrapper causing this test to fail');
}

mirror(self::FIXTURES_DIR.'/dir010', $this->tmp);

dump_file('box.json', '{}');
Expand Down

0 comments on commit 6cf6c83

Please sign in to comment.