From 8605ca5d01482675d96f9fbfbbe206ade6c49f0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Mon, 10 Oct 2022 10:26:48 +0000 Subject: [PATCH 1/5] Add gitpod config --- .gitpod.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..4f1b672 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,12 @@ +tasks: + - name: Run Utopia PHP AB Tests + init: | + composer install --ignore-platform-reqs + command: | + vendor/bin/phpunit --configuration phpunit.xml + vendor/bin/psalm --show-info=true + +vscode: + extensions: + - ms-azuretools.vscode-docker + - zobo.php-intellisense \ No newline at end of file From 8b7021c6606d896d79b2eaf07fd181ae98a1e65d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Mon, 10 Oct 2022 10:32:57 +0000 Subject: [PATCH 2/5] Ignore PHPUtil cache --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8924c80..e50d699 100755 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ composer.lock /vendor/ -/.idea/ \ No newline at end of file +/.idea/ +.phpunit.result.cache \ No newline at end of file From 82e11e9ac4a5d24f8969e78ba0c2a107d5d0e92d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Tue, 11 Oct 2022 11:49:09 +0000 Subject: [PATCH 3/5] Improve gitpod config --- .gitpod.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 4f1b672..651b577 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -2,9 +2,6 @@ tasks: - name: Run Utopia PHP AB Tests init: | composer install --ignore-platform-reqs - command: | - vendor/bin/phpunit --configuration phpunit.xml - vendor/bin/psalm --show-info=true vscode: extensions: From c9afa96d99c467c7adb159a73ea59027c74cea72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Wed, 12 Oct 2022 11:57:27 +0000 Subject: [PATCH 4/5] Revert gitignore changes --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e50d699..8924c80 100755 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ composer.lock /vendor/ -/.idea/ -.phpunit.result.cache \ No newline at end of file +/.idea/ \ No newline at end of file From 49d4f40305b8f10ff3717ea4862c51f123079d4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Wed, 12 Oct 2022 12:00:29 +0000 Subject: [PATCH 5/5] Rename Gitpod task --- .gitpod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index 651b577..b912bbf 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,5 +1,5 @@ tasks: - - name: Run Utopia PHP AB Tests + - name: PHP preparations init: | composer install --ignore-platform-reqs