fix: Display IPv6 URLs correctly on startup #287
This file contains 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" | |
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 |