Skip to content

Fix DeprecationWarning on method Thread.setDaemon #28

Fix DeprecationWarning on method Thread.setDaemon

Fix DeprecationWarning on method Thread.setDaemon #28

Workflow file for this run

name: Run lint and tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
# - '2.7'
# - '3.4'
# - '3.5'
# - '3.6'
# - '3.7'
- '3.8'
- '3.9'
- '3.10'
- 'pypy-2.7'
# - 'pypy-3.4'
# - 'pypy-3.5'
- 'pypy-3.6'
- 'pypy-3.7'
- 'pypy-3.8'
- 'pypy-3.9'
- 'pypy-3.10'
architecture:
# - 'x86'
- 'x64'
name: Python ${{ matrix.python-version }} ${{ matrix.architecture }}
steps:
- uses: actions/checkout@v3
- name: Setup python matrix
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
pip install -e .[dev]
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 chatexchange --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 chatexchange --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test
run:
python -m pytest