Skip to content

Commit

Permalink
test better
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbusche committed Nov 10, 2024
1 parent 695b2fe commit c519688
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,5 @@ def generate_lineup_files(csv_file):


if __name__ == "__main__":
csv_file = "draftkings.csv" # You can change this to any CSV file name
generate_lineup_files(csv_file)
file_name = "tests/draftkings.csv"
generate_lineup_files(file_name)
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_things.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

@pytest.fixture(autouse=True)
def generate_files():
generate_lineup_files('./draftkings.csv')
generate_lineup_files('./tests/draftkings.csv')


def test_generate_lineup_files():
Expand Down

0 comments on commit c519688

Please sign in to comment.