Skip to content

Commit 2ec4763

Browse files
committed
1 parent fb1f88d commit 2ec4763

File tree

5 files changed

+26
-1
lines changed

5 files changed

+26
-1
lines changed

Diff for: CONTRIBUTING

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Please, read http://napalm.readthedocs.io/en/latest/contributing/index.html

Diff for: README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[![PyPI](https://img.shields.io/pypi/v/napalm-skeleton.svg)](https://pypi.python.org/pypi/napalm-skeleton)
22
[![PyPI](https://img.shields.io/pypi/dm/napalm-skeleton.svg)](https://pypi.python.org/pypi/napalm-skeleton)
33
[![Build Status](https://travis-ci.org/napalm-automation/napalm-skeleton.svg?branch=master)](https://travis-ci.org/napalm-automation/napalm-skeleton)
4+
[![Coverage Status](https://coveralls.io/repos/github/napalm-automation/napalm-napalm-skeleton/badge.svg?branch=master)](https://coveralls.io/github/napalm-automation/napalm-napalm-skeleton)
5+
46

57
# napalm-skeleton
68

Diff for: napalm_skeleton/skeleton.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"""
1616
Napalm driver for Skeleton.
1717
18-
Read napalm.readthedocs.org for more information.
18+
Read https://napalm.readthedocs.io for more information.
1919
"""
2020

2121
from napalm_base.base import NetworkDriver

Diff for: requirements-dev.txt

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
pytest
2+
pytest-cov
3+
pytest-json
4+
pytest-pythonpath
5+
pylama
6+
flake8-import-order
7+
-r requirements.txt

Diff for: setup.cfg

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[pylama]
2+
linters = mccabe,pep257,pep8,pyflakes,import_order
3+
ignore = D203
4+
5+
[pylama:pep8]
6+
max_line_length = 100
7+
8+
[pytest]
9+
addopts = --cov=./ -vs
10+
json_report = report.json
11+
jsonapi = true
12+
13+
[coverage:run]
14+
include =
15+
napalm_skeleton/*

0 commit comments

Comments
 (0)