Skip to content
Permalink
Browse files

Add support for Travis CI

  • Loading branch information...
emjun committed Dec 17, 2018
1 parent 2e68e3d commit 730d144f9f41674b06e1deb63bc3c4e0e2061448
Showing with 66 additions and 2 deletions.
  1. +9 −0 .travis.yml
  2. +6 −0 Makefile
  3. +12 −0 Pipfile
  4. +29 −0 Pipfile.lock
  5. +10 −2 README.md
@@ -0,0 +1,9 @@
language: python
python:
- "3.6"
- "3.7"

install: "make"

script:
- make test
@@ -0,0 +1,6 @@
init:
pip install pipenv
pipenv install --dev

test:
pipenv run pytest python/tests
12 Pipfile
@@ -0,0 +1,12 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]

[packages]
attrs = "*"

[requires]
python_version = "3.7"
@@ -0,0 +1,29 @@
{
"_meta": {
"hash": {
"sha256": "0247c22c0f187eaa346c7406b84914a8054aad2a3184841fbf11f90646e7e283"
},
"pipfile-spec": 6,
"requires": {
"python_version": "3.7"
},
"sources": [
{
"name": "pypi",
"url": "https://pypi.org/simple",
"verify_ssl": true
}
]
},
"default": {
"attrs": {
"hashes": [
"sha256:10cbf6e27dbce8c30807caf056c8eb50917e0eaafe86347671b57254006c3e69",
"sha256:ca4be454458f9dec299268d472aaa5a11f67a4ff70093396e1ceae9c76cf4bbb"
],
"index": "pypi",
"version": "==18.2.0"
}
},
"develop": {}
}
@@ -1,2 +1,10 @@
# tea-lang
DSL for experimental design and statistical analysis
# tea-lang [![Build Status](https://travis-ci.com/emjun/tea-lang.svg?token=xtmHu9y9pvfxkHzbdxsu&branch=master)](https://travis-ci.com/emjun/tea-lang)

DSL for experimental design and statistical analysis.

The main code base is written in Python and lives in
the `python` subdirectory.

The `r` and `reason` subdirectories contain previous experiments.

The data used by test cases can be found in `datasets`.

0 comments on commit 730d144

Please sign in to comment.
You can’t perform that action at this time.