-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add type hints * Add poetry setup * Fix bad character in tmdb data * Add dev dependencies * Make more packagable * Fix formatting error in tmdb * Further improve data handling * use logger for printing * Use click * Adapt README * Remove wrongfull call of create_graph_data * Adapt CI * Fix problem with creating data before loading * Install package in nox * Use utf8 encoding everywhere * Avoid double ci runs on PRs
- Loading branch information
Showing
17 changed files
with
1,556 additions
and
564 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,11 @@ | ||
import nox | ||
|
||
|
||
@nox.session | ||
def tests_without_tqdm(session): | ||
session.install("pytest") | ||
session.install("requests") | ||
session.run("pytest") | ||
|
||
|
||
@nox.session | ||
def tests(session): | ||
session.install("pytest") | ||
session.install(".") | ||
session.install("requests") | ||
session.install("tqdm") | ||
session.install("pandas") | ||
session.install("pystow") | ||
session.run("pytest") |
Oops, something went wrong.