Enable Travis CI
This commit is contained in:
parent
8e98db48c4
commit
e4b9c51642
2 changed files with 15 additions and 0 deletions
14
.travis.yml
Normal file
14
.travis.yml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
sudo: false
|
||||||
|
language: python
|
||||||
|
|
||||||
|
python:
|
||||||
|
- "3.2"
|
||||||
|
- "3.6"
|
||||||
|
#- "pypy3"
|
||||||
|
# disabling PyPy3 until https://github.com/travis-ci/travis-ci/issues/6277 is solved.
|
||||||
|
|
||||||
|
install:
|
||||||
|
- pip3 install -r requirements.txt
|
||||||
|
|
||||||
|
script:
|
||||||
|
- python3 -m unittest test.py
|
|
@ -2,6 +2,7 @@ ods2md
|
||||||
======
|
======
|
||||||
|
|
||||||
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
|
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
|
||||||
|
[![Build Status](https://travis-ci.org/kennytm/ods2md.svg?branch=master)](https://travis-ci.org/kennytm/ods2md)
|
||||||
|
|
||||||
Convert LibreOffice Calc Spreadsheets (*.ods) into Markdown tables
|
Convert LibreOffice Calc Spreadsheets (*.ods) into Markdown tables
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue