Skip to content

Commit

Permalink
v 0.0.24 include ci status desc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yer1k committed Aug 9, 2024
1 parent 67e5d0d commit 164b1f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Repo for practicing writing python scripts


## CI Status
[![Python package](https://github.com/Yer1k/python_practice/actions/workflows/cicd.yml/badge.svg?branch=main)](https://github.com/Yer1k/python_practice/actions/workflows/cicd.yml)

This repository utilizes GitHub Actions to run a Python package workflow that **formats**, **lints**, and **tests** the python scripts in the repository, followed by **installing the required packages**. The workflow is defined in the `.github/workflows/cicd.yml` and 'Makefile' files.

## Description
This repository contains python scripts that I have written to practice writing python scripts. The scripts are based on prompts from the [Wise Owl Python Exercises](https://www.wiseowl.co.uk/python/exercises/python/).
Expand Down
2 changes: 1 addition & 1 deletion tests/test_the_meaning_of_life.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Module to test the function the_meaning_of_life() in the file the_meaning_of_life.py."""

from unittest.mock import patch
from the_meaning_of_life import the_meaning_of_life
from the_meaning_of_life import the_meaning_of_life # type: ignore


def test_the_meaning_of_life():
Expand Down

0 comments on commit 164b1f3

Please sign in to comment.