-
Notifications
You must be signed in to change notification settings - Fork 43
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
test: Add a test for System Coupling related settings #2812
Conversation
for more information, see https://pre-commit.ci
@seanpearsonuk @mkundu1 @raph-luc wondering if you could offer any insight here. The test that I added is failing using v24.2.0 Fluent. Looks like it comes down to not being able to download the SCP file that Fluent generates from the container. So, either it's not using the download functionality correctly here:
... or the (the assert on line 96 in the above link fails) |
@ochernuk You're right, and it's failing in v241 too not only v242. We definitely need some tests specifically for the File Transfer Service-related methods to give us confidence that it is working properly, I will make sure we bring this up in the team meeting tomorrow if others don't get to this first. |
@hpohekar Is it expected to work? Do we have relevant tests? |
@seanpearsonuk We are not using any file transfer service by default. In case of container mode, specifically in GitHub the written file will be available in Right now it is failing at If we still want to download it then we need add following code inside the test.
|
Is it expected to work? - No. It only works if we provide any file transfer service. Do we have relevant tests? - Yes. https://github.com/ansys/pyfluent/blob/main/tests/test_file_transfer_service.py#L42 |
That's great, many thanks for the detailed response, @hpohekar. @mkundu1 (et al) should |
Adding a simple test to check System Coupling related settings. It's probably worth adding a few more, but that can be done separately.