From fc8b3df0eeb4606413ced6c3fe9637902f995531 Mon Sep 17 00:00:00 2001 From: Zachary Klosko Date: Mon, 30 Nov 2020 21:03:07 -0500 Subject: [PATCH] Removing sudo --- .github/workflows/test-xenial.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test-xenial.md b/.github/workflows/test-xenial.md index 074b04494..0388dd1c2 100644 --- a/.github/workflows/test-xenial.md +++ b/.github/workflows/test-xenial.md @@ -19,11 +19,11 @@ jobs: postgresql password: 'libretime' - run: ENVIRONMENT=testing && LIBRETIME_LOG_DIR=/tmp/log/libretime - run: psql -c 'ALTER USER libretime CREATEDB;' -U postgres - - run: sudo bash dev_tools/ci/install.sh - - run: sudo composer install - - run: sudo pip3 install -e python_apps/airtime_analyzer/. - - run: sudo pip3 install -e python_apps/airtime-celery/. - - run: sudo pip3 install -e python_apps/api_clients/. - - run: sudo pip3 install -e python_apps/pypo/. + - run: ./dev_tools/ci/install.sh + - run: composer install + - run: pip3 install -e python_apps/airtime_analyzer/. + - run: pip3 install -e python_apps/airtime-celery/. + - run: pip3 install -e python_apps/api_clients/. + - run: pip3 install -e python_apps/pypo/. - run: nosetests python_apps/airtime_analyzer/. - run: nosetests python_apps/api_clients/.