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.
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
Fix #6022 srw scale wavefront during sim #6186
Fix #6022 srw scale wavefront during sim #6186
Changes from 63 commits
4608fe3
2634cf8
0d88775
fa7af93
1f4d863
6ee3fc8
12e9d08
2959106
b97559f
2160fbd
173932b
c8a9ce7
49279fb
e1987eb
ec2f400
e50570c
c97187f
1f4372c
ad96323
fe69aec
974e9c6
0e3add6
5e44915
b3de3f5
1f3da7b
136b347
d35e21f
01ad5a3
648eba6
942b78e
24f4dcb
a378bd4
1da7d60
c99ea42
638733f
68ffca6
64eded4
a0ec919
e64a6cc
1c2e771
520aa3d
c8743fe
7b1c0e0
187074b
ab1199e
05b0219
85a5574
d914ebf
24665dd
3cdff4e
0ed6432
ea2863e
82c90ac
5e2a07d
eedae25
e4ab070
2709c4b
5e8e848
25d3a7f
8d1a37c
7501dd2
0039fa2
7cf62e8
05493a0
851a07b
d695f0d
9dac7fe
d67e788
5b78a15
57df580
b0f1645
d9155e1
c9edc00
3f9a4dc
b46edd5
1dd3f76
4864724
7c0b7c0
91e1dab
4b49daf
e2591ee
b18d186
6a26578
9229dc5
9b1fc96
9f0e99e
ab43700
d0d528f
1c2841f
e9e7a83
3989e98
b82439c
207b1e4
7e2b51e
032066b
fa43d46
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Remove these imports and add an import pytest
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.
I see
import pytest
all over but it is rarely used. Also I still have to do the original imports in the test function. What does pytest do?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.
The import pytest brings in pytest (the testing framework) as the first thing in the program. It may be superstition at this point, but it used to do goofy things with "fixtures" when you didn't import pytest. Perhaps we can dispense with it. Let's try for this test.