diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 6c76d09..0000000 --- a/.travis.yml +++ /dev/null @@ -1,17 +0,0 @@ -# Using python for running the tests, using the `cram` test framework. -language: python - -python: "2.7" - -install: - - pip install cram - -script: - - make test - -notifications: - email: false - -branches: - only: - - master diff --git a/circle.yml b/circle.yml new file mode 100644 index 0000000..9b8f9ca --- /dev/null +++ b/circle.yml @@ -0,0 +1,11 @@ +machine: + python: + version: 2.7 + +dependencies: + pre: + - pip install cram + +test: + override: + - make test