Skip to content

Commit

Permalink
Merge pull request #8 from hogum/travis
Browse files Browse the repository at this point in the history
CI builds
  • Loading branch information
mugoh committed Aug 5, 2019
2 parents 9135a13 + b44bd09 commit de8619a
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[run]
omit = *examples*
omit = *examples*, *utils*
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
language: python
cache:
pip: true
python:
- "3.6"
sudo: true

before_install:
- sudo apt-get install -y ffmpeg

before_script:
- pip install coverage
- pip install coveralls
- pip install click

script:
- coverage run --source=convertor/ -m pytest && coverage report -m

after_success:
- coveralls
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# audioConvertor
# audioConvertor [![Build Status](https://travis-ci.org/hogum/audioConvertor.svg?branch=master)](https://travis-ci.org/hogum/audioConvertor) [![Coverage Status](https://coveralls.io/repos/github/hogum/audioConvertor/badge.svg?branch=master)](https://coveralls.io/github/hogum/audioConvertor?branch=master)

audioConvertor is a multifile media format convertor command line tool. It allows conversion of files to various media types, the most emphasised on, being from video to audio.
The tool is a guide detailed out on [this blog post](https://medium.com/@mugoh.ks/python-click-building-your-first-command-line-interface-application-6947d5319ef7)
Expand Down

0 comments on commit de8619a

Please sign in to comment.