Skip to content

Commit f2096ee

Browse files
committed
Add assert_passing() to _quarto.yml
1 parent 24f6213 commit f2096ee

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

docs/_quarto.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ quartodoc:
127127
- name: Validate.get_sundered_data
128128
- name: Validate.get_data_extracts
129129
- name: Validate.all_passed
130+
- name: Validate.assert_passing
130131
- name: Validate.n
131132
- name: Validate.n_passed
132133
- name: Validate.n_failed

pointblank/validate.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5016,9 +5016,9 @@ def assert_passing(self) -> None:
50165016
"""
50175017
Raise an `AssertionError` if all tests are not passing.
50185018
5019-
The `assert_passing()` method will raise an `AssertionError` if a test does not pass.
5020-
This method simply wraps `all_passed` for more ready use in test suites. The method
5021-
does not preserve information or the object itself, and must be further investigated.
5019+
The `assert_passing()` method will raise an `AssertionError` if a test does not pass. This
5020+
method simply wraps `all_passed` for more ready use in test suites. The method does not
5021+
preserve information or the object itself, and must be further investigated.
50225022
50235023
Raises
50245024
-------

0 commit comments

Comments
 (0)