From beb40ae38135dbc39af5aeb8e2a9f4a211c35f07 Mon Sep 17 00:00:00 2001 From: AlexJauchWalser Date: Fri, 8 Nov 2024 18:19:12 +0100 Subject: [PATCH 1/2] Add make assignment-0 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index da7f5cf..45b5e54 100644 --- a/Makefile +++ b/Makefile @@ -38,6 +38,9 @@ lint: pytest: .venv/bin/pytest +assignment-0: + .venv/bin/pytest tests/htwgnlp/test_python_basics.py + assignment-1: .venv/bin/pytest tests/htwgnlp/test_preprocessing.py From d3eadd74288783a22bf87e2b8066dc569af62b9a Mon Sep 17 00:00:00 2001 From: AlexJauchWalser Date: Fri, 8 Nov 2024 18:21:19 +0100 Subject: [PATCH 2/2] Add docstring hint to make file --- tests/htwgnlp/test_python_basics.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/htwgnlp/test_python_basics.py b/tests/htwgnlp/test_python_basics.py index 16e6348..c7df351 100644 --- a/tests/htwgnlp/test_python_basics.py +++ b/tests/htwgnlp/test_python_basics.py @@ -1,4 +1,6 @@ """Tests for `python_basics.py` module using pytest. + +This test file can be run using `make assignment-0` """ import os