Move to Github Actions
This commit is contained in:
parent
097ba853c4
commit
5322bb3152
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
# Docs: https://coverage.readthedocs.org/en/latest/config.html
|
||||
|
||||
[run]
|
||||
branch = False
|
||||
|
||||
# If True, stores relative file paths in data file (needed for Github Actions).
|
||||
# Using this parameter requires coverage>=5.0
|
||||
relative_files = True
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
name: Tests
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
paths-ignore:
|
||||
- '.gitignore'
|
||||
- '*.md'
|
||||
- '*.rst'
|
||||
- 'LICENSE'
|
||||
- 'dev_requirements.txt'
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
paths-ignore:
|
||||
- '.gitignore'
|
||||
- '*.md'
|
||||
- '*.rst'
|
||||
- 'LICENSE'
|
||||
- 'dev_requirements.txt'
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, pypy2, pypy3]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python Env
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Display Python version
|
||||
run: python -c "import sys; print(sys.version)"
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
make init
|
||||
- name: Run Tests
|
||||
run: |
|
||||
make test
|
||||
- name: Upload to Coveralls
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
COVERALLS_PARALLEL: true
|
||||
COVERALLS_FLAG_NAME: "${{ matrix.os }}_${{ matrix.python-version }}"
|
||||
run: |
|
||||
coveralls --service=github
|
||||
|
||||
coveralls:
|
||||
name: Finish Coveralls
|
||||
needs: test
|
||||
runs-on: ubuntu-latest
|
||||
container: python:3-slim
|
||||
steps:
|
||||
- name: Install coveralls
|
||||
run: |
|
||||
pip3 install --upgrade coveralls
|
||||
- name: Send coverage finish to coveralls.io
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
coveralls --finish
|
||||
25
.travis.yml
25
.travis.yml
|
|
@ -1,25 +0,0 @@
|
|||
language: python
|
||||
sudo: false
|
||||
python:
|
||||
- "2.7"
|
||||
- "3.4"
|
||||
- "3.5"
|
||||
- "3.6"
|
||||
- "nightly"
|
||||
- "pypy"
|
||||
- "pypy3"
|
||||
matrix:
|
||||
include:
|
||||
- python: 3.7
|
||||
dist: xenial
|
||||
sudo: true
|
||||
install:
|
||||
- make init
|
||||
- pip install coveralls
|
||||
- pip install scrutinizer-ocular
|
||||
script:
|
||||
- make test
|
||||
after_success:
|
||||
- coveralls
|
||||
- ocular
|
||||
|
||||
6
Makefile
6
Makefile
|
|
@ -18,11 +18,11 @@ help:
|
|||
@echo "$$HELPBODY"
|
||||
|
||||
init:
|
||||
pip install -r requirements.txt
|
||||
pip install -r dev_requirements.txt
|
||||
|
||||
test:
|
||||
rm -f .coverage aprslib/*.pyc
|
||||
nosetests --verbosity $(verbosity) --with-coverage --cover-package=aprslib
|
||||
rm -f .coverage aprslib/*.pyc tests/*.pyc
|
||||
PYTHONHASHSEED=0 pytest --tb=short --cov-config .coveragerc --cov=aprslib tests
|
||||
|
||||
pylint:
|
||||
pylint -r n -f colorized aprslib || true
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
mox3
|
||||
|
||||
coverage>=5.0; python_version == '2.7' or python_version >= '3.5'
|
||||
pytest-cov>=2.7.0; python_version == '2.7' or python_version >= '3.5'
|
||||
|
||||
# coveralls 2.0 has removed support for Python 2.7 and 3.4
|
||||
git+https://github.com/andy-maier/coveralls-python.git@andy/add-py27#egg=coveralls; python_version == '2.7'
|
||||
coveralls>=2.1.2; python_version >= '3.5'
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
nose
|
||||
coverage
|
||||
unittest2
|
||||
mox3
|
||||
sphinx==1.3.5
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
import unittest2 as unittest
|
||||
import unittest
|
||||
import socket
|
||||
import sys
|
||||
import os
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import unittest2 as unittest
|
||||
import unittest
|
||||
import sys
|
||||
|
||||
from aprslib import base91
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import unittest2 as unittest
|
||||
import unittest
|
||||
|
||||
from aprslib.exceptions import *
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# encoding: utf-8
|
||||
|
||||
import sys
|
||||
import unittest2 as unittest
|
||||
import unittest
|
||||
from mox3 import mox
|
||||
|
||||
from aprslib import parse
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import unittest2 as unittest
|
||||
import unittest
|
||||
|
||||
from aprslib.parsing import parse_comment_telemetry
|
||||
from aprslib import base91
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import unittest2 as unittest
|
||||
import unittest
|
||||
import string
|
||||
from random import randint, randrange, sample
|
||||
from datetime import datetime
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import unittest2 as unittest
|
||||
import unittest
|
||||
|
||||
from aprslib.parsing.misc import parse_status, parse_invalid, parse_user_defined
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import unittest2 as unittest
|
||||
import unittest
|
||||
|
||||
from aprslib.parsing import parse_weather_data
|
||||
from aprslib.parsing import parse
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import unittest2 as unittest
|
||||
import unittest
|
||||
from aprslib import passcode
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
import unittest2 as unittest
|
||||
import unittest
|
||||
|
||||
from aprslib import util
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue