Skip to content

Commit 52b8d93

Browse files
authored
Merge pull request #1185 from dimitri-yatsenko/key_populate
Remove old tests
2 parents 285605d + cf3e070 commit 52b8d93

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+3
-14754
lines changed

.github/workflows/development.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
flake8 --ignore=E203,E722,W503 datajoint \
111111
--count --max-complexity=62 --max-line-length=127 --statistics \
112112
--per-file-ignores='datajoint/diagram.py:C901'
113-
black --required-version '24.2.0' --check -v datajoint tests tests_old
113+
black --required-version '24.2.0' --check -v datajoint tests
114114
codespell:
115115
name: Check for spelling errors
116116
permissions:

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- Fixed - Added encapsulating double quotes to comply with [DOT language](https://graphviz.org/doc/info/lang.html) - PR [#1177](https://github.com/datajoint/datajoint-python/pull/1177)
66
- Added - Datajoint python CLI ([#940](https://github.com/datajoint/datajoint-python/issues/940)) PR [#1095](https://github.com/datajoint/datajoint-python/pull/1095)
77
- Added - Ability to set hidden attributes on a table - PR [#1091](https://github.com/datajoint/datajoint-python/pull/1091)
8-
- Added - Ability to specify a list of keys to popuate - PR [#989](https://github.com/datajoint/datajoint-python/pull/989)
8+
- Added - Ability to specify a list of keys to populate - PR [#989](https://github.com/datajoint/datajoint-python/pull/989)
99
- Fixed - fixed topological sort [#1057](https://github.com/datajoint/datajoint-python/issues/1057)- PR [#1184](https://github.com/datajoint/datajoint-python/pull/1184)
1010
- Fixed - .parts() not always returning parts [#1103](https://github.com/datajoint/datajoint-python/issues/1103)- PR [#1184](https://github.com/datajoint/datajoint-python/pull/1184)
1111

datajoint/user_tables.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ class _AliasNode:
257257

258258

259259
def _get_tier(table_name):
260-
"""given the table name, return"""
260+
"""given the table name, return the user table class."""
261261
if not table_name.startswith("`"):
262262
return _AliasNode
263263
else:

tests_old/__init__.py

-160
This file was deleted.

tests_old/data/Course.csv

-46
This file was deleted.

tests_old/data/CurrentTerm.csv

-2
This file was deleted.

tests_old/data/Department.csv

-9
This file was deleted.

0 commit comments

Comments
 (0)