-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
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
Fix typo in Contributing.md #820
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great! Welcome.
@@ -51,7 +51,7 @@ and [prettier][prettier-editors]. | |||
## Writing tests | |||
|
|||
```{note} | |||
Remember to first install the package with `pip install '-e[dev,test]'` | |||
Remember to first install the package with `pip install -e "[dev,test,docs]"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry and great catch!
tests/plot/test_catplot.py
Outdated
@@ -11,6 +11,6 @@ def test_catplot_vanilla(adata_mini, check_same_image): | |||
|
|||
check_same_image( | |||
fig=fig, | |||
base_path=f"{_TEST_IMAGE_PATH}/catplot_vanilla", | |||
base_path=f"{_TEST_IMAGE_PATH}/catplot_vanilla",; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are you adding a ;
here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I asked @aGuyLearning to make something fail to see how the CI flares up :)
Run Notebooks test seems to fail, when changes are not made in ehrapy repo? |
I think that's because a Github permission error. Can you recreate this PR without your fork but now by just branching from this repository, please? You are now a collaborator. |
Fixes #819