Do not allow fallback to __len__ for truthiness of Huey instance. #140
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: Tests | |
| on: [push] | |
| jobs: | |
| tests: | |
| name: ${{ matrix.python-version }} | |
| runs-on: ubuntu-latest | |
| services: | |
| redis: | |
| image: redis | |
| ports: | |
| - 6379:6379 | |
| kyototycoon: | |
| image: coleifer/kyototycoon | |
| ports: | |
| - 1978:1978 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: [3.8, "3.10", "3.11", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: pip deps | |
| run: pip install setuptools gevent redis peewee ukt | |
| - name: runtests | |
| env: | |
| HUEY_TRAVIS: '1' | |
| run: python runtests.py -v 2 |