Commenting out Software-properties in dockerfile #1125
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Packaging helper methods tests | |
| env: | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| workflow_dispatch: | |
| jobs: | |
| unit_test_execution: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Install package dependencies | |
| run: sudo apt-get update && sudo apt-get install libcurl4-openssl-dev libssl-dev python3-testresources | |
| - name: Install python requirements | |
| run: python -m pip install -r packaging_automation/requirements.txt | |
| - name: Citus package tests | |
| run: python -m pytest -q packaging_automation/tests/test_citus_package_utils.py |