From 226f964a67a47a080459ad8720dbb734b6f4892b Mon Sep 17 00:00:00 2001 From: t0b3 Date: Wed, 5 May 2021 20:01:09 +0200 Subject: [PATCH] add github workflow for pytest Signed-off-by: t0b3 --- .github/workflows/run-tests.yml | 81 +++++++++++++++++++++++++++++++++ requirements.txt | 1 + 2 files changed, 82 insertions(+) create mode 100644 .github/workflows/run-tests.yml diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml new file mode 100644 index 00000000..da6b6f34 --- /dev/null +++ b/.github/workflows/run-tests.yml @@ -0,0 +1,81 @@ +name: Run Python tests + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + test: + name: Inkscape ${{ matrix.inkscape-version }} - Python ${{ matrix.python-version }} - OS ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + python-version: ['3.9'] + inkscape-version: ['1.0'] + continue-on-error: [false] + include: + - { os: 'ubuntu-latest', python-version: '2.7', inkscape-version: '0.92.5', continue-on-error: false } + - { os: 'windows-latest', python-version: '2.7', inkscape-version: '0.92.5', continue-on-error: false } + - { os: 'ubuntu-latest', python-version: '3.9', inkscape-version: '0.92.5', continue-on-error: false } + - { os: 'windows-latest', python-version: '3.9', inkscape-version: '0.92.5', continue-on-error: false } + - { os: 'ubuntu-latest', python-version: '3.9', inkscape-version: 'TRUNK', continue-on-error: true } + continue-on-error: ${{ matrix.continue-on-error }} + + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: 🐧 add Inkscape 1.0 repo + if: ${{ matrix.os == 'ubuntu-latest' && matrix.inkscape-version == '1.0' }} + run: | + sudo add-apt-repository ppa:inkscape.dev/stable -y # inkscape 1.0 from https://launchpad.net/~inkscape.dev/+archive/ubuntu/stable + sudo apt-get update + - name: 🐧 add Inkscape TRUNK repo + if: ${{ matrix.os == 'ubuntu-latest' && matrix.inkscape-version == 'TRUNK' }} + run: | + sudo add-apt-repository ppa:inkscape.dev/trunk -y # inkscape 1.0 from https://launchpad.net/~inkscape.dev/+archive/ubuntu/trunk + sudo apt-get update + - name: 🐧 install Inkscape & umockdev + if: ${{ matrix.os == 'ubuntu-latest' }} + run: | + sudo apt-get -y install inkscape umockdev + - name: 🍏 install Inkscape + if: ${{ matrix.os == 'macos-latest' }} + run: | + brew install --cask inkscape + pip install libusb1 + - name: 🗖 install Inkscape 0.92.5 + if: ${{ matrix.os == 'windows-latest' && matrix.inkscape-version == '0.92.5' }} + run: | + choco install -y inkscape --version ${{ matrix.inkscape-version }} + - name: 🗖 install Inkscape + if: ${{ matrix.os == 'windows-latest' && matrix.inkscape-version == '1.0' }} + run: | + choco install -y inkscape + - name: 🗖 patch Inkscape (0.92.5) simpletransform + if: ${{ matrix.inkscape-version == '0.92.5' && matrix.os == 'windows-latest' }} + run: | + c: + sed -i 's:result=re.match("(:result=re.match(r"(:' "C:\\Program Files\\Inkscape\\share\\extensions\\simpletransform.py" # fix bug in inkscape extension: regex should use raw string + - name: 🐧 patch Inkscape (0.92.5) simpletransform + if: ${{ matrix.inkscape-version == '0.92.5' && matrix.os == 'ubuntu-latest' }} + run: | + sudo sed -i 's:result=re.match("(:result=re.match(r"(:' "/usr/share/inkscape/extensions/simpletransform.py" # fix bug in inkscape extension: regex should use raw string + - name: install requirements + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + pip install pytest + - name: test + env: + PYTHONWARNINGS: default + run: | + pytest -s -vv test diff --git a/requirements.txt b/requirements.txt index fd560c79..36c5d60d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ +numpy pyusb lxml