Skip to content

Commit

Permalink
Switch travis to github
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelm committed Jun 5, 2022
1 parent 1556d62 commit 9e80e6b
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 18 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Tests

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

jobs:
test:
runs-on: ubuntu-latest
name: Tests
strategy:
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: python -m pip install -U pip wheel coverage codecov
- name: Install Dependencies
run: python -m pip install -Ur requirements.txt pytest pytest-mock
- name: Run tests
run: coverage run -m pytest tests
- name: Upload coverage
run: codecov
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],

keywords='hbci banking fints',
Expand Down

0 comments on commit 9e80e6b

Please sign in to comment.