Skip to content

Infrastructure: Makefile Issues #883

@vjpixel

Description

@vjpixel

Medium Infrastructure Issue

Makefile issues and missing targets.

File: Makefile
Severity: MEDIUM
Impact: Development workflow problems

Issues Found:

  1. Missing common targets (clean, test, lint)
  2. Incorrect paths
  3. Missing dependencies

Suggested Fix

Update Makefile:

.PHONY: test clean lint

test:
pytest

lint:
flake8 src/

clean:
find . -type f -name "*.pyc" -delete
find . -type d -name "__pycache__" -delete

install:
pip install -e .

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workingpriority: mediumMedium priority - standard priority

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions