From 9a036d56195558867a41b4a4531d5e8806f01841 Mon Sep 17 00:00:00 2001 From: chojnicki Date: Thu, 15 Aug 2024 10:54:33 +0200 Subject: [PATCH] Disable testing on CI/CD due to blocks --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 025cc63..69ecf5a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,5 +37,9 @@ jobs: - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest - - name: Run test suite - run: vendor/bin/phpunit + # Disable testing for now due to rate limiting and other issues from GH workers + # Instead run tests manually on local machine before publishing, but even there it's not 100% reliable due to nature of crawling + # TODO to maintain this project easier, maybe consider using only API when it's possible and and remove html parsing all together + # (keep only for providers when there is no API or API is paid as a backup) + # - name: Run test suite + # run: vendor/bin/phpunit