-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from hartwork/issue-61-get-width-height-viewbo…
…x-back-into-svg-output Get width, height and viewBox back into SVG output (fixes #61)
- Loading branch information
Showing
3 changed files
with
45 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Copyright (C) 2021 Sebastian Pipping <[email protected]> | ||
# Licensed under the MIT License | ||
|
||
name: Run the test suite | ||
|
||
on: | ||
- pull_request | ||
- push | ||
|
||
jobs: | ||
run-tests: | ||
name: Run the test suite | ||
strategy: | ||
matrix: | ||
python-version: [2.7, 3.5, 3.9] # no explicit need for 3.6, 3.7, 3.8 | ||
runs-on: [macos-latest, ubuntu-latest] | ||
runs-on: ${{ matrix.runs-on }} | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Run the test suite | ||
run: | | ||
python --version | ||
pip install nose | ||
pip install -e . | ||
python -m nose -v |
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 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