Skip to content
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

Separate test utils from tests #2235

Merged
merged 46 commits into from
Jun 23, 2023
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
d787df6
fixturized data
flying-sheep Apr 13, 2022
84d86b3
oops
flying-sheep Apr 13, 2022
884d68a
move mark imports after setup()
flying-sheep Apr 13, 2022
343c929
darn
flying-sheep Apr 13, 2022
36a4b01
relative to test
flying-sheep Apr 14, 2022
601f681
Perfection
flying-sheep Apr 14, 2022
3594084
Merge branch 'master' into test-utils
flying-sheep Jun 19, 2023
b7bd6c8
Fixup
flying-sheep Jun 19, 2023
acb9e92
improve test ids
flying-sheep Jun 19, 2023
1694c65
xfail broken test
flying-sheep Jun 19, 2023
590c69f
Merge branch 'master' into test-utils
flying-sheep Jun 19, 2023
a8910ea
Fixup merge
flying-sheep Jun 19, 2023
0e4d63c
ah right
flying-sheep Jun 19, 2023
5ce5de7
test_pbmc3k no longer failing
flying-sheep Jun 19, 2023
c3aadb4
Explain make_skip_mark
flying-sheep Jun 19, 2023
1671467
simplify paga tests again
flying-sheep Jun 19, 2023
a7b2b1c
back to testpaths
flying-sheep Jun 19, 2023
d90499e
Fix colormap import
flying-sheep Jun 20, 2023
7e1e28f
add token
flying-sheep Jun 20, 2023
e6f771b
make feature not a view
flying-sheep Jun 20, 2023
c1b1aea
Simplify tests by fixturizing more
flying-sheep Jun 20, 2023
f6ea8f8
Merge branch 'master' into test-utils
flying-sheep Jun 20, 2023
3a53779
Discard changes to .azure-pipelines.yml
flying-sheep Jun 20, 2023
6bac462
rely on config
flying-sheep Jun 20, 2023
9e82d5b
typing
flying-sheep Jun 20, 2023
d62d246
terminal report for debugging
flying-sheep Jun 20, 2023
5feb8be
trace
flying-sheep Jun 20, 2023
55a7d47
fixed
flying-sheep Jun 20, 2023
894c2d7
source_pkgs
flying-sheep Jun 20, 2023
ecb3b7f
hopefully fix coverage
flying-sheep Jun 20, 2023
9e21b23
maybe enable module coverage
flying-sheep Jun 20, 2023
5c64a84
don’t install pytest -cov
flying-sheep Jun 20, 2023
82c4e86
needs coverage.py
flying-sheep Jun 20, 2023
731aaef
Use functions for data fixtures (#2522)
flying-sheep Jun 22, 2023
182a834
Unify needs_ marks
flying-sheep Jun 22, 2023
75b9c5f
missed a few
flying-sheep Jun 22, 2023
04cb0a4
missed marks
flying-sheep Jun 22, 2023
2e12e3b
Merge branch 'master' into test-utils
flying-sheep Jun 22, 2023
c664b28
centralize pytest options
flying-sheep Jun 23, 2023
2413a36
De-fixtureized
flying-sheep Jun 23, 2023
58e9f29
Prettification
flying-sheep Jun 23, 2023
d6f44e7
use needs() everywhere
flying-sheep Jun 23, 2023
f9b87d1
oops
flying-sheep Jun 23, 2023
ce668b8
fixed
flying-sheep Jun 23, 2023
6b9e734
enable a few dask tests
flying-sheep Jun 23, 2023
fcb0a06
oops
flying-sheep Jun 23, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
terminal report for debugging
  • Loading branch information
flying-sheep committed Jun 20, 2023
commit d62d24618472ee7fe138f51e1be240a70ffe2dc9
2 changes: 1 addition & 1 deletion .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
condition: eq(variables['RUN_COVERAGE'], 'no')

- script: |
pytest -v --color=yes --ignore=scanpy/tests/_images --nunit-xml="nunit/test-results.xml" --cov --cov-report=xml
pytest -v --color=yes --ignore=scanpy/tests/_images --nunit-xml="nunit/test-results.xml" --cov --cov-report=term --cov-report=xml
displayName: 'PyTest (coverage)'
condition: eq(variables['RUN_COVERAGE'], 'yes')

Expand Down
Loading