[BUG] kmeanfold does xpass?
See original GitHub issue@kayhoogland @MBrouns did you folks also see this in your test results?
tests/test_meta/test_thresholder.py ................. [ 49%]
tests/test_metrics/test_correlation_score.py .. [ 49%]
tests/test_metrics/test_neg_p_percent.py ... [ 50%]
tests/test_model_selection/test_klusterfold.py ........X........X........X........X........X........X........X........X........X........X........X..... [ 57%]
...X........X........X........X........X........X........X........X........X........X........X........X........X........X........X........X [ 67%]
tests/test_model_selection/test_timegapsplit.py .... [ 67%]
tests/test_pandas_utils/test_pandas_utils.py ...... [ 68%]
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (5 by maintainers)
Top Results From Across the Web
FAQ - XPASS
What is XPASS? XPASS is a stress-free, premium fitness subscription that gives you access to book fitness classes at boutique brands including: AKT,...
Read more >XPASS® — Book Workout Classes at Exclusive Prices
XPASS ® | Book workout classes at exclusive prices in boutique studios and stream live workouts at brands like Club Pilates, Pure Barre,...
Read more >Find a Studio - XPASS
Book group workout classes at 2,000+ boutique fitness studios with XPASS. Get Started. Frame 34471. Redo search in this area.
Read more >Contact Us - XPASS
Need help? Contact us with questions about your XPASS subscription. Our team is ready to help.
Read more >Plans & Pricing | XPASS
Starting at $49, XPASS gives you access to thousands of workout classes nationwide with top-of-the-line fitness equipment led by expert instructors.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I prefer
with pytest.raises(ValueError):
mainly because it is consistent with the rest of the API.Also, I know that I am not the most senior pytest user. But I never heard of
xpass
before today. I can imagine introducing it can be very confusing for other users.I didn’t look at the detailed test report, only checked whether the CI was green. I’m a bit surprised that an xpass actually results in the test suite as a whole passing. It might be preferable to use
with pytest.raises(ValueError):
instead in that case.