Skip to content

Commit

Permalink
Windows fix
Browse files Browse the repository at this point in the history
  • Loading branch information
WyriHaximus committed Jan 14, 2019
1 parent 7952204 commit 954ad82
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -53,7 +53,8 @@ install:

## Run the actual test
script:
- if [ -z "$qaExtended" ]; then make ci; fi;
- if [ -z "$qaExtended" || "${TRAVIS_OS_NAME}" != "windows" ]; then make ci; fi;
- if [ "${TRAVIS_OS_NAME}" = "windows" ]; then vendor/bin/phpunit; fi;
- if [ "$qaExtended" = "true" ]; then make ci-extended; fi;

## Gather coverage and set it to coverage servers
Expand Down

0 comments on commit 954ad82

Please sign in to comment.