diff --git a/.travis.yml b/.travis.yml index e9226116d2..580aa2270f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,8 +37,10 @@ script: - docker-compose logs appwrite-worker-functions - docker-compose exec appwrite doctor - docker-compose exec appwrite vars -- docker-compose exec appwrite test --debug -- docker-compose logs appwrite +- docker-compose exec appwrite test --debug --testsuite unit +- docker-compose exec appwrite test --debug --testsuite webhooks +- docker-compose exec appwrite test --debug --testsuite functions +- docker-compose exec appwrite test --debug --testsuite e2e deploy: - provider: script diff --git a/phpunit.xml b/phpunit.xml index b9363b22cf..668060ef70 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -12,12 +12,21 @@ - + ./tests/unit/ + + + ./tests/e2e/Services/Webhooks + + + ./tests/e2e/Services/Functions/FunctionsBase.php + ./tests/e2e/Services/Functions/FunctionsCustomServerTest.php + ./tests/e2e/Services/Functions/FunctionsCustomClientTest.php + + ./tests/e2e/Client.php ./tests/e2e/General ./tests/e2e/Scopes - ./tests/e2e/Services/Webhooks ./tests/e2e/Services/Account ./tests/e2e/Services/Avatars ./tests/e2e/Services/Database @@ -28,9 +37,6 @@ ./tests/e2e/Services/Teams ./tests/e2e/Services/Users ./tests/e2e/Services/Workers - ./tests/e2e/Services/Functions/FunctionsBase.php - ./tests/e2e/Services/Functions/FunctionsCustomServerTest.php - ./tests/e2e/Services/Functions/FunctionsCustomClientTest.php \ No newline at end of file