Skip to content

Commit

Permalink
chore: black format
Browse files Browse the repository at this point in the history
Signed-off-by: Avik Basu <avikbasu93@gmail.com>
  • Loading branch information
ab93 committed Oct 17, 2022
1 parent 702f3b4 commit 6a391ba
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install --no-root -E mlflow
poetry install --all-extras
- name: Test with pytest
run: make test
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install --no-root -E mlflow
poetry install --all-extras
- name: Run Coverage
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install --no-root
poetry install
- name: Black format check
run: poetry run black --check .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install --no-root -E mlflow
poetry install --all-extras
- name: Build dist
run: poetry build
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ lint: format

# install all dependencies
setup:
poetry install -v
poetry install --all-extras

# test your application (tests in the tests/ directory)
test:
Expand Down
4 changes: 2 additions & 2 deletions numalogic/tests/registry/_mlflow_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def mock_log_model_pytorch(*_, **__):
signature_dict=None,
utc_time_created="2022-05-23 22:35:59.557372",
mlflow_version="1.26.0",
signature=None
signature=None,
)


Expand All @@ -134,7 +134,7 @@ def mock_log_model_sklearn(*_, **__):
signature_dict=None,
utc_time_created="2022-05-23 22:35:59.557372",
mlflow_version="1.26.0",
signature=None
signature=None,
)


Expand Down

0 comments on commit 6a391ba

Please sign in to comment.