Skip to content

Commit

Permalink
add github workflow for pytest
Browse files Browse the repository at this point in the history
Signed-off-by: t0b3 <[email protected]>
  • Loading branch information
t0b3 committed May 5, 2021
1 parent 0acf197 commit d462b1a
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 0 deletions.
81 changes: 81 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# inkscape-silhouette

[![Build Status](https://travis-ci.com/fablabnbg/inkscape-silhouette.svg?branch=master)](https://travis-ci.com/fablabnbg/inkscape-silhouette)
[![Run Python tests](https://github.com/fablabnbg/inkscape-silhouette/actions/workflows/run-tests.yml/badge.svg)](https://github.com/fablabnbg/inkscape-silhouette/actions/workflows/run-tests.yml)

An extension to drive a Silhoutte Cameo and similar plotter devices from within inkscape.
100% pure python, ontop of the libusb backend.
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
numpy
pyusb
lxml

0 comments on commit d462b1a

Please sign in to comment.