Skip to content

Commit

Permalink
debug7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinalkan committed Apr 18, 2022
1 parent 488137f commit 55dc7e3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Expand Up @@ -21,7 +21,8 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
php: ["5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1"]
php: ["7.2"]
# php: ["5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1"]

steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions src/Codeception/Command/Run.php
Expand Up @@ -542,9 +542,9 @@ protected function currentNamespace()
protected function runSuites($suites, $skippedSuites = [], $include_only = [])
{

if([] != $include_only) {
$suites = array_intersect($suites, $include_only);
}
//if([] != $include_only) {
// $suites = array_intersect($suites, $include_only);
//}

$executed = 0;
foreach ($suites as $suite) {
Expand Down
2 changes: 1 addition & 1 deletion tests/data/app/db
@@ -1 +1 @@
a:0:{}
a:1:{s:6:"params";a:0:{}}
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"></xs:schema>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
<to>Son</to>
<from>Vader</from>
<heading>Disclaimer</heading>
<body>I'm your father!</body>
</note>

0 comments on commit 55dc7e3

Please sign in to comment.