From a2f974de2e80c30662756d97349afec779fc21c2 Mon Sep 17 00:00:00 2001 From: Leonardo Zanotti Date: Tue, 25 Jun 2024 10:15:20 -0300 Subject: [PATCH] AgendaSingle Test removed --- .github/workflows/test.yml | 6 +++++- src/plugins/MultipleLocalAuth | 2 +- src/plugins/plugin-MultipleLocalAuth | 1 - tests/unit/AgendaSingleTest.php | 22 ---------------------- 4 files changed, 6 insertions(+), 25 deletions(-) delete mode 160000 src/plugins/plugin-MultipleLocalAuth delete mode 100644 tests/unit/AgendaSingleTest.php diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 49b19b9200..20dce63e2a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,7 +3,7 @@ name: Testing on: pull_request: branches: - - "main" + - "develop" jobs: phpunit: @@ -15,6 +15,8 @@ jobs: steps: - name: Checkout Code uses: actions/checkout@v2 + with: + submodules: recursive - name: Add hosts to /etc/hosts run: | @@ -32,6 +34,8 @@ jobs: - name: Run migrations run: | + pwd + ls -la php src/tools/apply-updates.php env: APP_MODE: development diff --git a/src/plugins/MultipleLocalAuth b/src/plugins/MultipleLocalAuth index 05ba57531b..5750f62088 160000 --- a/src/plugins/MultipleLocalAuth +++ b/src/plugins/MultipleLocalAuth @@ -1 +1 @@ -Subproject commit 05ba57531b4992c000f515ab5ef5ac59f6cdd577 +Subproject commit 5750f6208858a8f960db9032283a653ad92c1818 diff --git a/src/plugins/plugin-MultipleLocalAuth b/src/plugins/plugin-MultipleLocalAuth deleted file mode 160000 index a299fce119..0000000000 --- a/src/plugins/plugin-MultipleLocalAuth +++ /dev/null @@ -1 +0,0 @@ -Subproject commit a299fce1191faa49dbe82c83a12f4760b3b9f37a diff --git a/tests/unit/AgendaSingleTest.php b/tests/unit/AgendaSingleTest.php deleted file mode 100644 index be449eeebc..0000000000 --- a/tests/unit/AgendaSingleTest.php +++ /dev/null @@ -1,22 +0,0 @@ -app->repo($class)->findAll(); - foreach ($entities as $entity) { - if ($entity->status > 0) { - $url = $entity->controller->createUrl('agendaSingle', [$entity->id]) . '?from=1900-01-01&to=2020-12-31'; - $this->assertGet200($url, 'agenda single status code 200: ' . $url); - } - } - - } - } - } -} \ No newline at end of file