NYU DevOps lab on using Travis CI with Redis for Continuous Integration
This lab contains a .travis.yml
file that shows you how to run your tests and request that a Redis service be attached while running them. It also uses Code Coverage to determine how complete your testng is.
For easy setup, you need to have Vagrant and VirtualBox installed. Then all you have to do is clone this repo and invoke vagrant:
git clone [email protected]:rofrano/nyu-lab-travis-ci.git
cd nyu-lab-travis-ci
vagrant up && vagrant ssh
cd /vagrant
This should give you a good indication that the unit tests are passing that that you have good code coverage.
You can now run nosetests
to run the TDD tests locally.
Run the tests using nosetests
and coverage
$ nosetests --with-coverage --cover-package=server
$ coverage report -m --include= server.py
Nose is configured to automatically include the flags --with-spec --spec-color
so that red-green-refactor is meaningful. If you are in a command shell that supports colors, passing tests will be green while failing tests will be red.
* server.py -- the main Service using Python Flask and Redis
* test_server.py -- test cases using unittest
* .travis.yml -- the Travis CI file that automates testing
This repo is part of the CSCI-GA.3033-014 DevOps course at NYU in NYC