-
Notifications
You must be signed in to change notification settings - Fork 31
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
Make kikuchipy compatible with PyEBSDIndex 0.2 #652
Merged
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
d8e47d3
Silence deprecation warnings from setuptools and traits
hakonanes b97fb24
Remove unnecessary figure decleration in EBSD.hough_indexing()
hakonanes d1ae018
Fix test for figures returned by PyEBSDIndex' indexing
hakonanes 7e3a0e9
Update PC opt with PSO from PyEBSDIndex 0.2
hakonanes e63d909
Describe how to handle multiprocessing/ptest-xdist in dev docs
hakonanes 84de5de
Require PyEBSDIndex >= 0.2
hakonanes 289baec
Fix conversion between EDAX TSL <--> Bruker PC convensions
hakonanes 77b2ee1
Use improved PC optimization w/ PSO from PyEBSDIndex 0.2 in HI tut.
hakonanes 1bb1610
Use PC plane fitting in hybrid indexing tut. made possible by improve…
hakonanes 88ebf90
Update reference frames tutorial using the fixed EDAX TSL PC conversion
hakonanes 59004af
Make PC moving-screen calibration tutorial compat. w/PyEBSDIndex 0.2
hakonanes e75f951
Require PyEBSDIndex 0.2.*
hakonanes 91e334b
Update orientation dep. on PC and PC plane fit tutorials
hakonanes 2b58b83
Start to make EBSD HI methods compatible with PyEBSDIndex 0.2
hakonanes 413b283
Start to make private HI functionality compatible with PyEBSDIndex 0.2
hakonanes 8c9b16a
Rewrite similarity check for phase lists from orix and PyEBSDIndex
hakonanes 989b1b2
Remove unnecessary test (was testing PyEBSDIndex, not kikuchipy)
hakonanes d4fc96b
Test passing reflector list in various forms, start on test for check…
hakonanes fb834b9
Complete tests of compatible phase lists and reflector lists
hakonanes 0c92cf1
Improve HI tutorial
hakonanes 3547c35
Improve hybrid indexing tutorial
hakonanes 5a397b9
Improve detector-sample calibration tutorials
hakonanes d2129b9
Slightly improve wording in pattern matching tutorial
hakonanes 4f8c230
Improve wording in reference frame tutorial
hakonanes a62e173
Update workshop tutorials
hakonanes 2d56155
Try to use Trame backend instead of Panel in tutorials using PyVista
hakonanes 29fed20
Replace Panel with Trame as PyVista backend in the docs
hakonanes ab9435f
Make PyVista 3D plots in docs static, as trame/nbpshinx does not work
hakonanes e3d2bff
Fix broken PR template links
hakonanes 2294eee
Silence some warnings when building docs locally, improve make commands
hakonanes 810e8be
Fix links in tutorials
hakonanes ec8b585
Capitalize DREAM.3D as the creators intended
hakonanes e5a30c8
Fix incorrect outlier detection in example, otherwise simplify exampl…
hakonanes 3e91a04
Re-introduce virtual frame buffer in docs (because PyVista needs it?)
hakonanes dad8ba0
Merge branch 'develop' into support-pyebsdindex-0-2
hakonanes a05120f
Add build: html to RTD sphinx config
hakonanes 69b644a
Install pandoc with aptitude on RTD server
hakonanes 542da6c
Use pytest-rerunfailures to rerun flaky tests
hakonanes aefc94e
Install pandoc version supported by nbconvert on RTD
hakonanes 95c1344
Re-introduce virtual frame buffer for PyVista on RTD
hakonanes f137df1
Mention possibility to set reflector lists for Hough indexing
hakonanes 7bd0abe
Update doc/dev/running_writing_tests.rst
hakonanes 3697def
Make it clear that comment lines and docstrings should be capped at 7…
hakonanes 792a35d
Add @CSSFrancis to package credits
hakonanes 6a8ff6b
Describe how to maintain package credits in the developer guide
hakonanes a794fe8
Remove reference to Twitter in code of conduct
hakonanes File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Use pytest-rerunfailures to rerun flaky tests
Signed-off-by: Håkon Wiik Ånes <hwaanes@gmail.com>
- Loading branch information
commit 542da6cb7474879bdf973219dab6e5d2bda2067d
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Is there a specific test or reason to add in the reruns? It might be better to just add the
@pytest.mark.flaky(reruns=2)
to the tests which are flaky and might fail?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.
Yes, the reason was a flaky test on a macOS run (here). The test check availability of datasets on Zenodo. I've experienced some flaky-ness in the past, so I figured this change was overdue.