mirror of
https://github.com/vikstrous/pirate-get
synced 2025-04-19 01:18:38 +02:00
Merge eff089ef0d
into 748539a037
This commit is contained in:
commit
2070b8a167
@ -1,7 +1,7 @@
|
||||
[run]
|
||||
branch = True
|
||||
source = ./pirate
|
||||
[report]
|
||||
include = /home/ubuntu/pirate-get/*
|
||||
omit = */tests/*,*__init__*
|
||||
omit = */tests/*,*__init__*,.git/*
|
||||
[html]
|
||||
directory = /home/ubuntu/pirate-get/htmlcov/
|
||||
directory = ./htmlcov/
|
||||
|
@ -1,5 +1,5 @@
|
||||
# pirate-get
|
||||
[](https://circleci.com/gh/vikstrous/pirate-get/tree/master) [](https://coveralls.io/github/vikstrous/pirate-get?branch=master) [](https://codeclimate.com/github/vikstrous/pirate-get) [](https://www.codacy.com/app/me_29/pirate-get) [](https://gemnasium.com/vikstrous/pirate-get) [](https://raw.githubusercontent.com/vikstrous/pirate-get/master/LICENSE) [](https://pypi.python.org/pypi/pirate-get/) [](https://pypi.python.org/pypi/pirate-get/)
|
||||
[](https://app.wercker.com/project/byKey/332647fe4b213a791ad9016bfa5f2bee) [](https://coveralls.io/github/vikstrous/pirate-get?branch=master) [](https://codeclimate.com/github/vikstrous/pirate-get) [](https://www.codacy.com/app/me_29/pirate-get) [](https://gemnasium.com/vikstrous/pirate-get) [](https://raw.githubusercontent.com/vikstrous/pirate-get/master/LICENSE) [](https://pypi.python.org/pypi/pirate-get/) [](https://pypi.python.org/pypi/pirate-get/)
|
||||
|
||||
pirate-get is a convenient command line tool (inspired by APT) to speed up your trip to the Pirate Bay and get your completely legal torrents more quickly.
|
||||
|
||||
|
15
circle.yml
15
circle.yml
@ -1,15 +0,0 @@
|
||||
machine:
|
||||
python:
|
||||
version: 3.4.2
|
||||
dependencies:
|
||||
override:
|
||||
- pip install -r requirements-test.txt
|
||||
- python setup.py install
|
||||
test:
|
||||
override:
|
||||
- coverage run -m unittest discover
|
||||
post:
|
||||
- mkdir -p $CIRCLE_ARTIFACTS/coverage
|
||||
- cd /home/ubuntu/pirate-get && coverage html
|
||||
- cp -R /home/ubuntu/pirate-get/htmlcov/* $CIRCLE_ARTIFACTS/coverage
|
||||
- coveralls
|
21
wercker.yml
Normal file
21
wercker.yml
Normal file
@ -0,0 +1,21 @@
|
||||
box: python:3.4-slim
|
||||
build:
|
||||
steps:
|
||||
- install-packages:
|
||||
packages: git
|
||||
- script:
|
||||
name: dependencies
|
||||
code: |
|
||||
pip install -r requirements-test.txt
|
||||
python setup.py install
|
||||
echo "python version $(python --version) running"
|
||||
echo "pip version $(pip --version) running"
|
||||
- script:
|
||||
name: run tests
|
||||
code: |
|
||||
coverage run -m unittest discover
|
||||
- script:
|
||||
name: coverage report
|
||||
code: |
|
||||
coverage html
|
||||
coveralls
|
Loading…
Reference in New Issue
Block a user