feat(rebalance): error if a topic migration is ongoing #44
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: Python Integration CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| tests: | |
| name: "Run tests" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| max-parallel: 3 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| name: Checkout code | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.11 | |
| - name: Run tests | |
| working-directory: ./py | |
| run: | | |
| pip install -r requirements.txt | |
| pip install -r requirements-dev.txt | |
| pytest test_parse_and_notify.py | |