From 0f1da44a876e683896d623e0c532f2fe00225100 Mon Sep 17 00:00:00 2001 From: Zachary Klosko Date: Thu, 17 Dec 2020 10:15:09 -0500 Subject: [PATCH] Reaching brink of insanity --- .github/workflows/test-all-Ubuntu.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test-all-Ubuntu.yml b/.github/workflows/test-all-Ubuntu.yml index 8345e2d10..02ef5aa75 100644 --- a/.github/workflows/test-all-Ubuntu.yml +++ b/.github/workflows/test-all-Ubuntu.yml @@ -65,14 +65,11 @@ jobs: run: sudo bash ./.github/scripts/install-xenial.sh - name: Run Python tests run: | - pip3 install --upgrade pip + pip install --upgrade pip sudo bash ./.github/scripts/python-pkg-install.sh sudo bash ./.github/scripts/python-pkg-test.sh - - name: Install PHP dependencies - run: composer install --no-progress --dev - - name: PHPUnit tests - uses: php-actions/phpunit@v1 - with: - php_version: '7.0' - configuration: 'airtime_mvc/tests/phpunit.xml' - bootstrap: 'airtime_mvc/tests/application/bootstrap.php' \ No newline at end of file + - name: Run PHP tests + run: | + composer install --no-progress --dev + cd airtime_mvc/tests + sudo bash ../../vendor/bin/phpunit \ No newline at end of file