Skip to content

Commit

Permalink
Update install
Browse files Browse the repository at this point in the history
  • Loading branch information
erich-hs committed Apr 20, 2023
1 parent 7acf6c5 commit 3940364
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,12 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Install
run: |
make install
- name: Lint with pylint
working-directory: ./src/tabularcompare
run: |
make lint
- name: Test with pytest
working-directory: ./src/tabularcompare
run: |
make test
make test
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
install:
pip install --upgrade pip &&\
pip install -r requirements.txt
pip install -r requirements.txt
pip install .

lint:
pylint --disable=R,C,W1203,E1101 compare utils --fail-under=9.0
pylint --disable=R,C,W1203,E1101 src.tabularcompare.compare src.tabularcompare.utils --fail-under=9.0

test:
python -m pytest tests/test_compare.py &&\
Expand Down

0 comments on commit 3940364

Please sign in to comment.