Skip to content
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

add tests #522

Draft
wants to merge 70 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
70 commits
Select commit Hold shift + click to select a range
8976fc6
add ZnFlow based ZnTrack Node
PythonFZ Mar 2, 2023
e040ad5
add more dvc / zn options
PythonFZ Mar 2, 2023
b1f3784
add first test
PythonFZ Mar 3, 2023
93a0881
fix named nodes
PythonFZ Mar 3, 2023
8586d95
add node to node connections
PythonFZ Mar 3, 2023
5dc0e60
remove duplicate code
PythonFZ Mar 3, 2023
ec7f793
code cleanup
PythonFZ Mar 3, 2023
54d1e2b
bump version
PythonFZ Mar 3, 2023
0e643da
add NodeIdentifier class
PythonFZ Mar 3, 2023
c9a1b07
add optional dvc arguments
PythonFZ Mar 3, 2023
45ae449
add nwd replacement
PythonFZ Mar 3, 2023
de4347e
move eager argument to run
PythonFZ Mar 3, 2023
f29a85c
create branches and experiments (somehow works)
PythonFZ Mar 3, 2023
ddf46b8
test multiple exp per branch
PythonFZ Mar 3, 2023
0b13793
add legacy tests
PythonFZ Mar 6, 2023
65f2790
add plots
PythonFZ Mar 6, 2023
4967858
add meta.Text
PythonFZ Mar 6, 2023
09e1638
allow optional dependencies
PythonFZ Mar 6, 2023
7c4a70f
poetry update
PythonFZ Mar 6, 2023
fc259a0
fix default
PythonFZ Mar 6, 2023
72b0833
refactor circular imports + small fixes
PythonFZ Mar 6, 2023
c05de05
updates
PythonFZ Mar 7, 2023
db4dc5b
poetry update and update docstrings
PythonFZ Mar 8, 2023
53bf561
add zn.nodes
PythonFZ Mar 8, 2023
32d57eb
add tests for getitem + raise not implemented yet error
PythonFZ Mar 8, 2023
b6f3af0
addnotebook support code
PythonFZ Mar 8, 2023
7b62599
update notebooks
PythonFZ Mar 8, 2023
0b997b1
add lazy loading
PythonFZ Mar 8, 2023
e2154af
Add 'LazyField'
PythonFZ Mar 8, 2023
1dfed4c
Lazy Loading update
PythonFZ Mar 8, 2023
cacc5b3
Update Custom Field
PythonFZ Mar 8, 2023
79bad7b
add ZnJson to parameters
PythonFZ Mar 8, 2023
0e829b4
remove test for wrong params. znjson encoders apply
PythonFZ Mar 8, 2023
ee90186
call init and post_init methods in from_rev
PythonFZ Mar 8, 2023
5df09c0
fix order
PythonFZ Mar 8, 2023
44e82c7
fix dvc params files
PythonFZ Mar 8, 2023
3c4c94c
update how post methods work.
PythonFZ Mar 9, 2023
3addacf
save always, indepent of node.state.loaded
PythonFZ Mar 9, 2023
daf13a6
add FieldGroup enum
PythonFZ Mar 9, 2023
33f015c
code cleanup
PythonFZ Mar 9, 2023
91c7d2d
update notebooks
PythonFZ Mar 9, 2023
e80da46
make 'get_stage_add_argument' optional
PythonFZ Mar 9, 2023
f28dfef
rename private method to 'get_data'
PythonFZ Mar 9, 2023
746d50f
fix issue with zntrack.Project
PythonFZ Mar 9, 2023
991932a
add nodify decorator
PythonFZ Mar 9, 2023
d2fd457
fix nodify
PythonFZ Mar 9, 2023
2149818
add nodify tests
PythonFZ Mar 9, 2023
34a2fff
add metadata
PythonFZ Mar 9, 2023
ab9c402
test timeit, add mean/std
PythonFZ Mar 9, 2023
052d450
update notebook
PythonFZ Mar 9, 2023
2e2ee7a
add tests
PythonFZ Mar 9, 2023
356dbd5
add legacy tests
PythonFZ Mar 9, 2023
f68a7ef
add legacy tests
PythonFZ Mar 9, 2023
6d31c85
add toto
PythonFZ Mar 9, 2023
c651258
add save argument to run
PythonFZ Mar 9, 2023
703b491
add initialize argument
PythonFZ Mar 9, 2023
6c57f72
make initialize a function
PythonFZ Mar 9, 2023
c9ec224
bump DVC version
PythonFZ Mar 9, 2023
6f01604
do not try to save LazyOption
PythonFZ Mar 9, 2023
77ffd9c
chaange verbose level of dvc cmd
PythonFZ Mar 9, 2023
97887b7
use run_dvc_cmd
PythonFZ Mar 9, 2023
94cbb3e
add better experiment support
PythonFZ Mar 9, 2023
6df7dba
add direct getitem support
PythonFZ Mar 9, 2023
2f091b7
add getitem tests
PythonFZ Mar 9, 2023
67ca1b5
poetry update
PythonFZ Mar 10, 2023
b9faf2d
add pre-release version
PythonFZ Mar 10, 2023
c85f3ca
update znflow
PythonFZ Mar 10, 2023
0cc9cc6
rename origin to remote (#519)
PythonFZ Mar 14, 2023
2639864
update zzninit (#520)
PythonFZ Mar 14, 2023
140d436
add tests
PythonFZ Mar 14, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.vscode/
tmp/
/tests/basic/.git
/docs/build
Expand All @@ -11,4 +12,5 @@ venv
/py_track.egg-info/
__pycache__/
.pymon
.ipynb_checkpoints
.ipynb_checkpoints
_examples/
Loading