handle allocation wait timeout properly and run tests in py3.11 (#31) #144
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: Unit tests | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
release: | |
types: [ published ] | |
jobs: | |
run-unittests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ] | |
name: ${{ matrix.os }}-Python-${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup Node.js | |
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '16' | |
- name: Install appium and adb | |
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' | |
run: | | |
npm install appium android-tools-bin && | |
cp ./node_modules/android-tools-bin/dist/linux/x86/adb ./node_modules/.bin/adb && | |
export PATH=./node_modules/.bin:$PATH && | |
appium --version && | |
adb --version | |
- name: Install dependencies | |
run: make setup | |
- name: Run Unit tests | |
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' | |
run: | | |
export PATH="$PATH:./node_modules/.bin" && make test | |
- name: Run Unit tests | |
if: matrix.os != 'ubuntu-latest' | |
run: | | |
make test | |
- name: Coveralls | |
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' | |
uses: AndreMiras/coveralls-python-action@develop | |
- name: make packages | |
if: github.event_name == 'release' && matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' | |
run: make package | |
- name: publish | |
if: github.event_name == 'release' && matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' | |
env: | |
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
run: make publish |