11## data_dependency_exploration
22
3- TANE algorithm implementation for function dependency exploration
3+ A TANE algorithm implementation for function dependency exploration
4+ 5+ Command line in this introduction is fully tested on Ubuntu 16.04
46
57
68### Prerequisite
79
810* python3(>=3.5.2)
9- * pylint3(>=1.5.2)
11+ * pylint3(>=1.5.2), acquired by ` sudo apt-get install pylint3 `
12+ * coverage(>= 4.3.4), acquired by ` sudo pip3 install coverage `
1013
1114### Project structure
1215
@@ -36,7 +39,11 @@ to generate documents for module details
3639
3740#### main.py
3841
39- * This file is an example of using previous module
42+ * An example of using above modules
43+ 44+ #### test.py
45+ 46+ * Test cased
4047
4148Run
4249```
@@ -63,5 +70,11 @@ python3 main.py -i data/data.txt -o output.txt --breaker=,
6370```
6471to get function dependencies in ` output.txt ` for table in ` data/data.txt `
6572
66- #### Test
67- //TODO:
73+ #### Run test
74+ Run
75+ ```
76+ coverage run test.py
77+ coverage html
78+ ```
79+ to get a coverage report of the test
80+
0 commit comments