-
Notifications
You must be signed in to change notification settings - Fork 25
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
Merge/retro/refactor actions grpc #339
Changes from 136 commits
3f8d676
3431471
18e666a
e6f2b79
8a4353a
8be2f2a
99856e8
3786694
76e7650
caed381
56c151d
a982047
68bd6c2
0db0e2e
d810645
16e2ab3
be6c38a
5090ef7
834f46d
d270bdf
fb9aa51
5ee0bf4
2e18c13
860d190
fb05974
f1df7bf
6a883a2
a4ec8b2
d611689
0e5d006
a540885
5138dcf
816925c
3e8c229
ed8ca92
274ca9e
b2d7e93
fac439a
e4b47fe
5f03a49
40801dc
58157f2
38d8cb8
deba5f6
f9e7065
26ac04a
406c3cb
2644054
fdaeab3
548eb12
a3ee08d
f30158b
be15028
e3f6097
4cc4680
5bb7c33
ddf63d4
a74e635
36e1076
306390f
ee1913d
ec72b07
472fe07
bfedb8f
6d3f0f7
7d7f959
b05711d
c821bf5
b2c30ef
b3fe38d
3743fcc
3330a66
5f00e76
d99e7a0
d4d0ebb
0505f74
c253f60
172d79f
e5840cd
4239d25
c99cdfe
c4b1f07
45f7a79
8e8ad1e
d72282f
831c2fb
8666f36
0ef8e83
f3ca491
1b343d3
daa6393
503ecde
458b4b5
3da0c1e
1f84078
d1ae076
c02c4a0
4ce75de
e8e5835
ce0e3b8
ec55e9f
31f2d6e
d47f1f7
da22494
11e30e0
455bde9
4d28452
3ff9971
88bc7b5
a925b04
b385bf6
23154f3
60af04d
d004206
056624d
78894f6
53ed94a
8d1dee8
0150d2c
d83514c
3c9460d
6cb2906
55f1785
e1de846
a9898a8
0fceafc
db7f308
128d81d
8492887
bef994b
bfae322
ffa1982
9f3ae0f
5ca8524
4b5300f
90a0bcf
deab988
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -122,8 +122,6 @@ def find_ansys(): | |
for version in sorted(versions, reverse=True): | ||
if not version.isnumeric(): | ||
continue | ||
if version == __ansys_version__: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @cbellot000 that means that in ansys_version = 222 case, find_ansys() method won't be able to return an ansys_path based on AWP_ROOT222 ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @cbellot000 @anslpa yes the next elif might have been left by mistake. The get_ansys_path does try AWP_ROOT222 before calling find_ansys(), but you might want to still try to get it within find_ansys() for retro-compatibility. |
||
continue | ||
elif version < __ansys_version__: | ||
ansys_path = os.environ.get("AWP_ROOT" + version) | ||
if ansys_path: | ||
|
Large diffs are not rendered by default.
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.
@PProfizi @cbellot000 just that you know, pytest as an --ignore flag that can be used as:
pytest ./tests --ignore tests\test_server.py --ignore tests\test_launcher.py