Skip to content

Commit

Permalink
Merge branch 'main' into task/WP-211-targetPath
Browse files Browse the repository at this point in the history
  • Loading branch information
rstijerina authored Sep 29, 2023
2 parents 55b7d52 + 9b53589 commit 090a0bf
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,7 @@ const DataFilesMoveModal = React.memo(() => {

const onOpened = () => {
fetchListing({
api: 'tapis',
scheme: 'private',
system: selectedSystem.system,
path: `${selectedSystem.homeDir || ''}`,
...params,
});
};

Expand All @@ -68,7 +65,7 @@ const DataFilesMoveModal = React.memo(() => {
setDisabled(true);
move({
destSystem: system,
destPath: path,
destPath: path || '/',
callback: reloadPage,
});
},
Expand Down
2 changes: 1 addition & 1 deletion client/src/redux/sagas/datafiles.sagas.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export function* renameFile(action) {
action.payload.api,
action.payload.scheme,
file.system,
file.path,
'/' + file.path,
action.payload.newName
);
yield put({
Expand Down
3 changes: 1 addition & 2 deletions server/portal/apps/signals/signals.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from django.dispatch import Signal

# Generic event signal. Not in use as of 6.29.20
portal_event = Signal(providing_args=['event_type', 'event_data', 'event_users'])
portal_event = Signal()
14 changes: 14 additions & 0 deletions server/pytest.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
[pytest]
DJANGO_SETTINGS_MODULE = portal.settings.unit_test_settings
python_files = tests.py *unit_test.py

filterwarnings =
ignore::DeprecationWarning:django.*:
ignore::DeprecationWarning:openapi_schema_validator.*:
ignore::DeprecationWarning:openapi_spec_validator.*:
ignore::DeprecationWarning:openapi_core.*:
ignore::DeprecationWarning:kombu.*:
ignore::DeprecationWarning:pkg_resources.*:
ignore:.*Django now detects this configuration.*:django.utils.deprecation.RemovedInDjango41Warning

markers =
asyncio: mark a test as asyncio.

# refer to WP-271 for follow up on Deprecation Warnings

0 comments on commit 090a0bf

Please sign in to comment.