Skip to content

Commit

Permalink
Merge pull request quandl#171 from quandl/sp/migrate-to-code-build
Browse files Browse the repository at this point in the history
Migrate from Travis to CodeBuild
  • Loading branch information
couture-ql authored Dec 16, 2020
2 parents f8504ed + f07cd6a commit c3efa8d
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 16 deletions.
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Quandl Python Client
[![Build Status](https://travis-ci.com/quandl/quandl-python.svg?branch=master)](https://travis-ci.com/quandl/quandl-python)
[![Build Status](https://codebuild.us-east-1.amazonaws.com/badges?uuid=eyJlbmNyeXB0ZWREYXRhIjoiZUtvUFNYREloNE4vV0xWWEUxVS81S0toZjdQbzQrWXhQZ1BUbE1mZ1FMVXdSZXQ2K1ZLQ1ducmtqYTVWa2xBZXhRMWVGemVKWitzVm5MNXI4cGZYb21RPSIsIml2UGFyYW1ldGVyU3BlYyI6Im0vdUljcjBjdmpGVU9XdXUiLCJtYXRlcmlhbFNldFNlcmlhbCI6MX0%3D&branch=master)]()
[![PyPI version](https://badge.fury.io/py/Quandl.svg)](https://badge.fury.io/py/Quandl)

This is the official documentation for Quandl's Python Package. The package can be used to interact with the latest version of the [Quandl RESTful API](https://www.quandl.com/docs/api). This package is compatible with python v2.7.x and v3.x+.
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ envlist = py3.5,py3.6,py3.7,py3.8
commands =
nosetests
flake8
python -W always setup.py -q test
deps =
nose
flake8
Expand All @@ -18,4 +19,4 @@ deps =
mock
ndg-httpsclient
jsondate
parameterized
parameterized
22 changes: 22 additions & 0 deletions travis_buildspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: 0.2

cache:
paths:
- 'pip'

phases:
install:
runtime-versions:
python: 3.8

pre_build:
commands:
- pip install tox

build:
commands:
- tox

post_build:
commands:
- echo Build successful.

0 comments on commit c3efa8d

Please sign in to comment.