Skip to content

Commit

Permalink
chore: test (#4)
Browse files Browse the repository at this point in the history
* chore: test

* fix: remove 'it' option in Makefile
  • Loading branch information
matakanobu authored Feb 20, 2024
1 parent 70d17e3 commit f65f514
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion projects/project-a/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ build:

# Run the tests in the docker container
test:
docker run --rm -it -v `pwd`/tests:/project/tests:ro --entrypoint /bin/bash $(IMAGE_NAME) -c 'pip install pytest; python -m pytest /project/tests'
docker run --rm -v `pwd`/tests:/project/tests:ro --entrypoint /bin/bash $(IMAGE_NAME) -c 'pip install pytest; python -m pytest /project/tests'

# Remove the docker image
clean:
Expand Down
2 changes: 1 addition & 1 deletion projects/project-a/src/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def run(self):
print("Running pipeline A")

def preprocess(self):
pass
print("Preprocessing data")

def feature_extraction(self):
pass
Expand Down

0 comments on commit f65f514

Please sign in to comment.