We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running pytest from anywhere in the project, "ModuleNotFound" errors are thrown for each of the local packages.
I'm using codespaces
test_
test
ERROR tests/test_age_slowest_race.py ERROR tests/test_arg_checker.py ERROR tests/test_calculator.py ERROR tests/test_html2markdown.py ERROR tests/test_linkedin_checker.py ERROR tests/test_medals.py ERROR tests/test_pairwise_offset.py
The modules are imported and pytest runs
The modules are not loaded and the tests never get to run.
N/A
The text was updated successfully, but these errors were encountered:
this author seems busy, he mentioned here https://github.com/LinkedInLearning/level-up-advanced-python-3213390/blob/main/CONTRIBUTING.md
He could not take any issues or PRs.
For all the import in test files, you need to make some changes like this
from average_race_time import get_data, get_average, get_rhines_times
from challenge.average_race_time import get_data, get_average, get_rhines_times
Sorry, something went wrong.
No branches or pull requests
Issue Overview
When running pytest from anywhere in the project, "ModuleNotFound" errors are thrown for each of the local packages.
Describe your environment
I'm using codespaces
Steps to Reproduce
test_
files in thetest
directory:Expected Behavior
The modules are imported and pytest runs
Current Behavior
The modules are not loaded and the tests never get to run.
Related Issues
N/A
The text was updated successfully, but these errors were encountered: