mirror of
https://github.com/yaml/pyyaml.git
synced 2025-10-19 19:13:19 +00:00
Merge pull request #2 from sigmavirus24/yaml-1.2
Set-up Travis CI for PyYAML
This commit is contained in:
commit
a183fbf059
3 changed files with 16 additions and 0 deletions
14
.travis.yml
Normal file
14
.travis.yml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
language: python
|
||||||
|
|
||||||
|
python:
|
||||||
|
- 2.6
|
||||||
|
- 2.7
|
||||||
|
- 3.2
|
||||||
|
- 3.3
|
||||||
|
|
||||||
|
# command to run tests, e.g. python setup.py test
|
||||||
|
install: pip install -r requirements.txt
|
||||||
|
|
||||||
|
before_script: cython ext/_yaml.pyx
|
||||||
|
|
||||||
|
script: python setup.py test
|
1
requirements.txt
Normal file
1
requirements.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Cython
|
1
setup.py
1
setup.py
|
@ -1,3 +1,4 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
NAME = 'PyYAML'
|
NAME = 'PyYAML'
|
||||||
VERSION = '3.10'
|
VERSION = '3.10'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue