Skip to content

Commit

Permalink
Replace travis with github-actions (#122)
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Bednar <[email protected]>
  • Loading branch information
lukas-bednar authored Dec 7, 2021
1 parent 1a4d155 commit 228520d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 37 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Pytest Jira gatting
on:
pull_request:
jobs:
build:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.6", "3.7", "3.8", "3.9"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
pip install tox
- name: Run tox
run: tox -e py
24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

8 changes: 0 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
|Build Status| |Code Health| |Code Coverage|

Intro
=====

Expand Down Expand Up @@ -229,9 +227,3 @@ In order to execute tests run
$ tox
.. |Build Status| image:: https://travis-ci.org/rhevm-qe-automation/pytest_jira.svg?branch=master
:target: https://travis-ci.org/rhevm-qe-automation/pytest_jira
.. |Code Health| image:: https://landscape.io/github/rhevm-qe-automation/pytest_jira/master/landscape.svg?style=flat
:target: https://landscape.io/github/rhevm-qe-automation/pytest_jira/master
.. |Code Coverage| image:: https://codecov.io/gh/rhevm-qe-automation/pytest_jira/branch/master/graph/badge.svg
:target: https://codecov.io/gh/rhevm-qe-automation/pytest_jira
6 changes: 1 addition & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
[tox]
envlist = py36,py37,py38,pep8
[tox:travis]
3.6 = py36, pep8
3.7 = py37, pep8
3.8 = py38, pep8
envlist = py36,py37,py38,py39,pep8

[testenv]
deps=
Expand Down

0 comments on commit 228520d

Please sign in to comment.