From 3f3b455ea1f15da1729c9e6be3fd7702a8a00e80 Mon Sep 17 00:00:00 2001 From: Yury Bayda Date: Mon, 28 Apr 2025 22:43:06 -0700 Subject: [PATCH] Remove main.py --- .github/workflows/main.yml | 3 --- Makefile | 6 ------ README.md | 6 ------ main.py | 4 ---- 4 files changed, 19 deletions(-) delete mode 100755 main.py 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 539f72a..bba6fc6 100644 --- a/README.md +++ b/README.md @@ -17,12 +17,6 @@ handle all dependencies automatically. * [Python 3.8+](https://www.python.org/) * [pytest](https://pytest.org) -### 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!")