You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As part of the important foundational preparations for our project, we need to integrate a CI/CD process to check code and data formats, tests, and documentation. To begin, we're going to use Git's pre-commit functionality managed by the Python package git-commit. The first pre-commit operation will be a code checker called ruff, followed by the test suites and other functions.
Requirements
Add pre-commit as a project requirement
Add ruff as a project requirement
Configure pre-commit to run ruff then all test suites
Dependencies
None
Tasks
Write unit tests
Write functional tests
Write docstring
Write code
Write documentation
The text was updated successfully, but these errors were encountered:
Description
As part of the important foundational preparations for our project, we need to integrate a CI/CD process to check code and data formats, tests, and documentation. To begin, we're going to use Git's pre-commit functionality managed by the Python package
git-commit
. The first pre-commit operation will be a code checker calledruff
, followed by the test suites and other functions.Requirements
pre-commit
as a project requirementruff
as a project requirementpre-commit
to runruff
then all test suitesDependencies
Tasks
The text was updated successfully, but these errors were encountered: