Skip to content

Commit

Permalink
Merge pull request #303 from mraniki/dev
Browse files Browse the repository at this point in the history
👷 CI Change
  • Loading branch information
mraniki committed Oct 1, 2023
2 parents ee8ec16 + 54838cf commit 18dc56d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions .github/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.291
hooks:
- id: ruff
#args: [--fix, --exit-non-zero-on-fix]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-merge-conflict
- id: check-toml
- id: check-yaml
4 changes: 2 additions & 2 deletions .requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
colorama==0.4.6 ; python_version >= "3.10" and python_version < "4.0" and sys_platform == "win32"
dynaconf==3.2.2 ; python_version >= "3.10" and python_version < "4.0"
loguru==0.6.0 ; python_version >= "3.10" and python_version < "4.0"
dynaconf==3.2.3 ; python_version >= "3.10" and python_version < "4.0"
loguru==0.7.2 ; python_version >= "3.10" and python_version < "4.0"
pyparsing==3.1.1 ; python_version >= "3.10" and python_version < "4.0"
win32-setctime==1.1.0 ; python_version >= "3.10" and python_version < "4.0" and sys_platform == "win32"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ packages = [

[tool.poetry.dependencies]
python = "^3.10"
dynaconf = "^3.2.0"
loguru = "^0.6.0"
dynaconf = ">=3.2.0"
loguru = ">=0.6.0"
pyparsing = "^3.0.9"


Expand Down
4 changes: 2 additions & 2 deletions tests/test_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ def result_order():

@pytest.fixture
def ignore_order():
"""return valid order"""
return "buy US500"
"""return order to ignore"""
return "buy DOGE"


@pytest.fixture
Expand Down

0 comments on commit 18dc56d

Please sign in to comment.