From 5f34fc431053abfb36b2c2a536b6dbf963b33a4f Mon Sep 17 00:00:00 2001 From: GitBluub Date: Sun, 2 Apr 2023 02:38:41 +0900 Subject: [PATCH] ci --- .github/workflows/CI.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 743084c..c89eb60 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -96,6 +96,11 @@ jobs: docker-compose ps -a wget --retry-connrefused http://localhost:3000 # /healthcheck + - name: Run scorometer tests + run: | + pip install -r scorometer/requirements.txt + cd scorometer/tests && ./runner.sh perfect_play + - name: Run robot tests run: | pip install -r back/test/robot/requirements.txt @@ -122,11 +127,6 @@ jobs: gh_access_token: ${{ secrets.GITHUB_TOKEN }} only_summary: true - - name: Run scorometer tests - run: | - pip install -r scorometer/requirements.txt - cd scorometer/tests && ./runner.sh perfect_play - - name: Remove .env && stop the service run: docker-compose down && rm .env