Shell constructor hangs on ubuntu #111
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Check out the commit | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ~${{ matrix.version }} | |
- name: Install development dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install \ | |
-r requirements.txt \ | |
-r doc/requirements.txt \ | |
-r example/requirements.txt \ | |
-r test/requirements.txt | |
python3 -m pip install snoop | |
- name: Test install | |
run: python3 -m pip install . | |
- name: Test with pytest | |
uses: nick-fields/retry@v3 | |
with: | |
timeout_minutes: 10 | |
max_attempts: 3 | |
command: python3 -m pytest --verbose --cov=shell_logger test/ | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Check documentation coverage | |
run: make coverage SPHINXOPTS="-W --keep-going" | |
working-directory: ./doc | |
- name: Archive documentation coverage results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: docs-coverage-report | |
path: doc/build/coverage/python.txt | |
- name: Test uninstall | |
run: python3 -m pip uninstall -y shell-logger | |
commits: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Conventional Commits | |
uses: taskmedia/[email protected] | |
with: | |
types: > | |
build|chore|ci|docs|feat|fix|minor|patch|perf|style|refactor|test |