Previous Lecture lect08 Next Lecture

lect08, Mon 10/25

Overview: Software Testing

Slides

Materials

MVP Tag/Release in your GitHub repo by the end of today!

By the end of today, 10/25/21, tag and release your MVP project in your github. This brief article gives some suggestions on versioning numbering.

To create a tag:

Option 1: Web UI

Option 2: command line instructions.

(Choose this option if you need to create a tag that is earlier than the most recent commit)

git tag v1.0.0 <commit ID>

note - v1.0.0 is the tag name, and commitID refers to the last commit in your MVP

you can find the commit ID using git log, or using the history tab in the github web ui

if done correctly, you should see something like this in the git log image

if you messed up, you can delete the tag using git tag -d <tag_name>

Verify that everything looks good, then git push origin <tag_name>

Your newly created tag should appear in your tags page on the web UI

To create a release:

Option 1:

Option 2:

Deployment today. Video deadline tomorrow. On Wednesday: Participate in the MVP review and review other groups’ MVPs

By today’s deadline, you should have reviewed and accepted your final pull request for your MVP. Also, the Deployment Instructions linked from your README.md are filled in and workable.

In class on Wed, 10/27/21, 14:00, we will watch the videos all the groups have created, and provide feedback in a simple Google Form. You will get points towards lab04 for submitting these forms.

Work in Breakout Groups