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
A Spec made by Zipping two Specs that contain the same axis raises an exception:
spec = ( Static.duration(0.1) .concat(Static.duration(0.2)) .zip(Line.bounded(DURATION, 0, 0, 2)) ) with pytest.raises( AssertionError, match=re.escape("Zipping would overwrite axes ['DURATION']") ): spec.calculate()
A Spec made by taking the Product of two Specs that contain the same axis does not:
spec = ( Static.duration(0.1) * Line.bounded(DURATION, 0, 0, 2) ) with pytest.raises(AssertionError): spec.calculate()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A Spec made by Zipping two Specs that contain the same axis raises an exception:
A Spec made by taking the Product of two Specs that contain the same axis does not:
The text was updated successfully, but these errors were encountered: