Skip to content

Commit

Permalink
check pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
SermetPekin committed Apr 17, 2024
1 parent 59766af commit 6d786c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ jobs:
python -c "import sys; print(sys.executable)"
- name: test dt
run: |
python ./evdspy_test.py
python ./evdspy_tes_t.py
8 changes: 4 additions & 4 deletions evdspy_test.py → evdspy_tes_t.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ def get_api_key():
assert isinstance(get_api_key(), str) and len(get_api_key()) == 10


def test1():
def t1():
setup()
save(get_api_key())


def test2():
def t2():
df = get_series("TP.ODEMGZS.BDTTOPLAM",
frequency="monthly",
start_date=default_start_date_fnc(),
Expand All @@ -30,5 +30,5 @@ def test2():


if __name__ == "__main__":
test1()
test2()
t1()
t2()

0 comments on commit 6d786c3

Please sign in to comment.