diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2830430..b80f248 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,8 +38,5 @@ jobs: with: version: "latest" - - name: Run main - run: make run - - name: Test run: make test diff --git a/Makefile b/Makefile index 35e7367..1d5f039 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,6 @@ all: test -# Detect available package managers UV := $(shell command -v uv 2> /dev/null) - SRCS := $(shell git ls-files *.py) ifdef UV @@ -11,10 +9,6 @@ else RUNNER := endif -.PHONY: run -run: - $(RUNNER) ./main.py - .PHONY: test test: $(RUNNER) pytest test_*.py diff --git a/README.md b/README.md index 3d695b6..cf7d1c4 100644 --- a/README.md +++ b/README.md @@ -13,12 +13,6 @@ This is a bootstrap repository for clean code katas in Python 3 using pytest. ## Usage -### Run main - -```console -make run -``` - ### Run tests ```console diff --git a/main.py b/main.py deleted file mode 100755 index 8159ff0..0000000 --- a/main.py +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env python3 - -if __name__ == "__main__": - print("Hello World!")