Skip to content

Commit

Permalink
Merge pull request #137 from ricklupton/ricklupton-actions-tests
Browse files Browse the repository at this point in the history
Create python-package.yml
  • Loading branch information
ricklupton authored Jul 26, 2024
2 parents 21abc95 + 2f19d8a commit a382db0
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 18 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Python package

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
pip install '.[test]'
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest --cov=floweaver --cov-report=xml
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v4.2.0
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
.. image:: https://readthedocs.org/projects/floweaver/badge/?version=latest
:target: http://floweaver.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
.. image:: https://travis-ci.org/ricklupton/floweaver.svg?branch=master
:target: https://travis-ci.org/ricklupton/floweaver
.. image:: https://github.com/ricklupton/floweaver/actions/workflows/python-package.yml/badge.svg
:target: https://github.com/ricklupton/floweaver/actions/workflows/python-package.yml
:alt: Test Status
.. image:: https://codecov.io/gh/ricklupton/floweaver/branch/master/graph/badge.svg
:target: https://codecov.io/gh/ricklupton/floweaver
Expand Down
2 changes: 1 addition & 1 deletion test/test_hierarchy.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ def test_hierarchy():
assert h('East Anglia') == "location in ['Cambridge', 'Ely', 'Escape \"']"
assert h('*') == None

with pytest.raises(KeyError):
with pytest.raises((KeyError, nx.NetworkXError)):
h('unknown')

0 comments on commit a382db0

Please sign in to comment.