Skip to content

Commit b859bd8

Browse files
committed
Disable e2e tests temporarily
1 parent f8dbf18 commit b859bd8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+6872
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ all: test
4646
ci-test: SILENT=
4747
ci-test: prerequisites
4848
$(SILENT) $(PHPDBG) $(PHPUNIT) $(PHPUNIT_COVERAGE_CLOVER)
49-
tests/e2e_tests
49+
#tests/e2e_tests
5050

5151
ci-analyze: SILENT=
5252
ci-analyze: prerequisites ci-cs ci-infection ci-phpstan ci-psalm

tests/e2e/PhpSpec/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Test Framework Equality
2+
3+
## Summary
4+
This test proves that the same mutations are found and covered by different test-frameworks.
5+
6+
## Full Ticket
7+
This is not related to a specific github ticket.
8+
9+
Every test framework should have roughly the same tests to make sure the result for infection doesn't differ.

tests/e2e/PhpSpec/composer.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"config": {
3+
"platform": {
4+
"php": "7.2.9"
5+
}
6+
},
7+
"autoload": {
8+
"psr-4": {
9+
"TestFrameworks\\": "src/"
10+
}
11+
},
12+
"autoload-dev": {
13+
"psr-4": {
14+
"spec\\": "spec/",
15+
"TestFrameworks\\Test\\": "tests/"
16+
}
17+
},
18+
"require-dev": {
19+
"phpspec/phpspec": "^4.3 || ^5.1 || ^6.1",
20+
"leanphp/phpspec-code-coverage": "^4.0",
21+
"phpunit/phpunit": "^6.5"
22+
}
23+
}

0 commit comments

Comments
 (0)