This repository was archived by the owner on Jan 15, 2026. It is now read-only.
Remove sqlitedict from requirements and import guard #906
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: launcher | |
| on: | |
| pull_request: | |
| branches: | |
| - 'main' | |
| jobs: | |
| unit_tests: | |
| runs-on: ubuntu-latest | |
| env: | |
| working-directory: ./launcher_scripts | |
| steps: | |
| - name: checkout the repo | |
| uses: actions/checkout@v3 | |
| - name: install dependencies | |
| run: | | |
| python -m pip install pytest requests-mock -r requirements.txt | |
| - name: run unit tests | |
| run: PYTHONPATH=$PWD pytest | |
| working-directory: ${{env.working-directory}} |