fix: Route __repr__ and get_undecorated_callback behavior with __call__. #367
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, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| max-parallel: 5 | |
| matrix: | |
| python-version: | |
| - "2.7" | |
| - "3.8" | |
| - "3.9" | |
| - "3.10" | |
| - "3.11" | |
| - "3.12" | |
| - "3.13" | |
| container: | |
| image: "python:${{ matrix.python-version }}" | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install dependencies | |
| run: .github/workflows/install-deps.sh | |
| - name: Run tests | |
| run: pytest . -ra -q --cov=bottle --cov-report=term |