Skip to content
This repository was archived by the owner on Mar 4, 2026. It is now read-only.

Commit 9f1dbc7

Browse files
committed
add drone file
1 parent 0d00154 commit 9f1dbc7

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.drone.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
matrix:
2+
PYTHON_VERSION:
3+
- 2.7
4+
- 3.3
5+
- 3.4
6+
- 3.5
7+
- 3.6
8+
9+
pipeline:
10+
fmt_and_lint:
11+
image: python:alpine
12+
commands:
13+
- pip install pylama yapf
14+
- yapf -dr packet | (! grep '.')
15+
- pylama packet test setup.py
16+
17+
test:
18+
image: python:${PYTHON_VERSION}-alpine
19+
commands:
20+
- pip install tox
21+
- tox

0 commit comments

Comments
 (0)