From 38c7d37e02a9ca7e54beff6b9be906bdd9e7365b Mon Sep 17 00:00:00 2001 From: Eric O Asante Date: Mon, 4 Nov 2024 10:30:19 -0500 Subject: [PATCH] Update ms5.yaml --- .github/workflows/ms5.yaml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/ms5.yaml b/.github/workflows/ms5.yaml index a550af1..ce7aabd 100644 --- a/.github/workflows/ms5.yaml +++ b/.github/workflows/ms5.yaml @@ -36,18 +36,3 @@ jobs: run: | python -m pip install --upgrade pip pip install pylint - # Run pylint on your pulled code in the Docker container running the job - - name: Analysing the code with pylint - run: | - pylint $(git ls-files 'hw002/*.py') - # Pytest is for unit testing your python code. Use this block as is to - # install pytest in the Docker container running the job - - name: Install pytest - run: | - python -m pip install --upgrade pip - pip install pytest - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - # Run pytest on your pulled codebase - - name: Test with pytest - run: | - pytest