Skip to content

Testing the CI/CD pipeline #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
Binary file added course1/.DS_Store
Binary file not shown.
Binary file added course1/week1-ungraded-lab/.DS_Store
Binary file not shown.
Binary file added course3/.DS_Store
Binary file not shown.
Binary file added course4/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file added course4/week3-ungraded-labs/.DS_Store
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@ def predict(wine: Wine):
batches = wine.batches
np_batches = np.array(batches)
pred = clf.predict(np_batches).tolist()
return {"Prediction": pred}
return {"Prediction": pred}
'''
To run the unit test using the CI/CD pipeline you need to push some changes to the remote repository. To do this, add a comment somewhere in the main.py file and save the changes.
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

all good to go

'''