fix: remove ping text from sendPing instead of binary payload from websocket #201
Workflow file for this run
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: Lint/Test Conda | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: (${{ matrix.python-version }}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
max-parallel: 3 | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-20.04", "windows-latest"] | |
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, "3.10"] | |
steps: | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
- name: Conda info | |
shell: bash -l {0} | |
run: conda info | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Install OpenSSL (Windows) | |
if: matrix.os == "windows-latest" | |
run: | | |
choco install openssl | |
- name: Install dependencies | |
shell: bash -l {0} | |
run: | | |
conda install pip | |
pip install --upgrade setuptools | |
pip install -r dev_requirements.txt | |
pip install -e . | |
- name: Lint with flake8runnerndefined names | |
flake8 . --count --show-source --statistics | |
- name: Test with pytest | |
shell: bash -l {0} | |
run: | | |
py.test --cov=./ |