Enable urllib3 unittest again since it is a WIP for the fix #127
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: RPyC | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: [ master ] | |
jobs: | |
python-unittest-all-versions: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade .[dev,optional] | |
- name: Lint with flake8 | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Init ssh settings | |
run: | | |
mkdir -pv ~/.ssh | |
chmod 700 ~/.ssh | |
echo NoHostAuthenticationForLocalhost yes >> ~/.ssh/config | |
echo StrictHostKeyChecking no >> ~/.ssh/config | |
ssh-keygen -q -f ~/.ssh/id_rsa -N '' | |
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys | |
uname -a | |
- name: Bind threads tests with unittest | |
run: | | |
RPYC_BIND_THREADS="true" python -m unittest discover -v | |
- name: Default tests with unittest | |
run: | | |
python -m unittest discover -v |