Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 0 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,5 @@ jobs:
with:
version: "latest"

- name: Run main
run: make run

- name: Test
run: make test
6 changes: 0 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -11,10 +9,6 @@ else
RUNNER :=
endif

.PHONY: run
run:
$(RUNNER) ./main.py

.PHONY: test
test:
$(RUNNER) pytest test_*.py
Expand Down
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 0 additions & 4 deletions main.py

This file was deleted.