Skip to content

Commit

Permalink
Merge pull request #69 from Codeception/fix-ci
Browse files Browse the repository at this point in the history
CI: Set pcov.directory to make remote tests work again
  • Loading branch information
Naktibalda authored May 8, 2021
2 parents 8fe15a5 + 56d8164 commit 4100bd4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Start PHP Server
run: |
cd vendor/codeception/codeception && php -S 127.0.0.1:8000 -t tests/data/app >/dev/null 2>&1 &
cd vendor/codeception/codeception && php -S 127.0.0.1:8000 -t tests/data/app -d pcov.directory=$(pwd)/tests/data/app >/dev/null 2>&1 &
- name: Run test suite
run: cd vendor/codeception/codeception && php ./codecept run coverage
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Start PHP Server
run: |
cd vendor/codeception/codeception && php -S 127.0.0.1:8000 -t tests/data/app >/dev/null 2>&1 &
cd vendor/codeception/codeception && php -S 127.0.0.1:8000 -t tests/data/app -d pcov.directory=$(pwd)/tests/data/app >/dev/null 2>&1 &
- name: Run test suite
run: cd vendor/codeception/codeception && php ./codecept run coverage
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Start PHP Server
run: |
cd vendor/codeception/codeception && php -S 127.0.0.1:8000 -t tests/data/app >/dev/null 2>&1 &
cd vendor/codeception/codeception && php -S 127.0.0.1:8000 -t tests/data/app -d pcov.directory=$(pwd)/tests/data/app >/dev/null 2>&1 &
- name: Run test suite
run: cd vendor/codeception/codeception && php ./codecept run coverage

0 comments on commit 4100bd4

Please sign in to comment.