Feed Submission December 17 #2380
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: Unit tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths-ignore: | |
| - 'scripts/**' | |
| - '.github/workflows/add_new_or_updated_feeds.yml' | |
| - '.github/workflows/**' | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| unit-tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [3.9] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install "pip<24.1" | |
| pip install pytest wheel numpy | |
| sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable | |
| sudo apt-get update | |
| sudo apt-get install gdal-bin python3-gdal | |
| sudo apt-get install libgdal-dev | |
| pip install GDAL==$(gdal-config --version) --global-option=build_ext --global-option="-I/usr/include/gdal" | |
| sudo apt-get install libspatialindex-dev | |
| if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
| - name: Unit tests with pytest | |
| run: | | |
| pytest --ignore=./tests/test_integration.py --html=mobility-catalogs-unit-tests-report.html --self-contained-html | |
| - name: Upload the HTML artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: mobility-catalogs-unit-tests-report-v${{ github.run_id }}.${{ github.run_number }} | |
| path: mobility-catalogs-unit-tests-report.html |