You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+57-6
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,41 @@
4
4
Darts is still in an early development phase and we cannot always guarantee backwards compatibility. Changes that may **break code which uses a previous release of Darts** are marked with a "🔴".
If the conda setup is causing too many problems, we also provide a Docker image with everything set up for you and ready-to-use Python notebooks with demo examples.
66
+
To run the example notebooks without installing our libraries natively on your machine, you can use our Docker image:
67
+
```bash
68
+
./gradlew docker && ./gradlew dockerRun
69
+
```
70
+
71
+
Then copy and paste the URL provided by the docker container into your browser to access Jupyter notebook.
72
+
73
+
For this setup to work you need to have a Docker service installed. You can get it at [Docker website](https://docs.docker.com/get-docker/).
74
+
75
+
76
+
## Tests
77
+
78
+
The gradle setup works best when used in a python environment, but the only requirement is to have `pip` installed for Python 3+
79
+
80
+
To run all tests at once just run
81
+
```bash
82
+
./gradlew test_all
83
+
```
84
+
85
+
alternatively you can run
86
+
```bash
87
+
./gradlew unitTest_all # to run only unittests
88
+
./gradlew coverageTest # to run coverage
89
+
./gradlew lint # to run linter
90
+
```
91
+
92
+
To run the tests for specific flavours of the library, replace `_all` with `_core`, `_prophet`, `_pmdarima` or `_torch`.
93
+
94
+
## Documentation
95
+
96
+
To build documentation locally just run
97
+
```bash
98
+
./gradlew buildDocs
99
+
```
100
+
After that docs will be available in `./docs/build/html` directory. You can just open `./docs/build/html/index.html` using your favourite browser.
0 commit comments