devops-suppliers / suppliers

NYU DevOps Project - Suppliers
Apache License 2.0
0 stars 1 forks source link

Set up Travis CI for Suppliers Repository & Add Badge #35

Closed jp1130 closed 4 years ago

jp1130 commented 4 years ago

As a developer I need to make sure that all codes run TDD and Unit Test before merging to master branch So that I know that the build is not broken

Assumptions:

Acceptance Criteria: Given that I want to view the status of the build When I want to clone a new repo or merge a pull request Then I can view the Travis CI badge on GitHub to get the status ....

Steps to achieve this:

---EXAMPLE--- Make the hit counter persistently survive service restarts

As a User I need the hit counter to persist the last known count So that I don't loose track of the count after the service is restarted

Assumptions: • We will use Redis as the persistent store • A Redis service from Bluemix should be used

Acceptance Criteria: When I advance the hit counter to 2
And I restart the hit counter services
And I call the hit counter URL
Then I should see 3 returned from the service

---End of EXAMPLE---