-
Notifications
You must be signed in to change notification settings - Fork 1
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
Converted paste into a command #68
Conversation
…information return same results
@@ -51,7 +51,7 @@ jobs: | |||
- name: Pytest with coverage | |||
if: matrix.os == 'ubuntu-latest' | |||
# Note: Use of pytest -n .. (pytest-xdist) does not work with coverage | |||
run: coverage run --source=src/paste3 -m pytest | |||
run: coverage run --source=src/paste3 --omit="*/__main__.py" -m pytest |
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.
can we just add a test to check the execution of the main
function in __main__.py
(or even just if {sys.executable} paste3 --version
will work? In any case, let's not make exceptions like this (let coverage go down if it must).
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.
Added a test to check version number and got rid of the --omit...
.
We have some |
io
submodule to process input filesslice*.h5ad1
). Each of these files hold the same information asslice*.csv
andslice*_coor.csv
. This was just added to ensure that files that hold same information but are of different types provide same computational results