We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
These were failing after I merged PR's, and need unmerging once you're back:
def test_for_limits_and_scale(): triangles = CoordinateArrayTriangles.for_limits_and_scale( x_min=-1.0, x_max=1.0, y_min=-1.0, y_max=1.0, ) assert triangles.triangles.shape == (4, 3, 2)
def test_full_routine(one_triangle, compare_with_nans): result = full_routine(one_triangle) assert compare_with_nans( result.triangles, np.array( [ [ [0.0, 0.4330126941204071], [0.25, 0.0], [-0.25, 0.0], ] ] ), )
The text was updated successfully, but these errors were encountered:
rhayes777
No branches or pull requests
These were failing after I merged PR's, and need unmerging once you're back:
The text was updated successfully, but these errors were encountered: