ArtesiaWater / hydropandas

Module for loading observation data into custom DataFrames
https://hydropandas.readthedocs.io
MIT License
51 stars 11 forks source link

Where is the 'plots' directory in the dino test data #2

Closed OnnoEbbens closed 4 years ago

OnnoEbbens commented 5 years ago

When I cloned the repository there was no directory named 'plots' inside the 'tests\data\2019-Dino-test' directory. This results in failing tests for the plot functions. I created the plots dir but then it was not discovered by git when adding with 'git add .'

I could not find the 'plots' directory in the .gitignore so I don't understand why it is not added. Why is this directory not there?

dbrakenhoff commented 5 years ago

Empty folders are not committed by default. To add just the directory you need to add a .gitignore in there that ignores everything except itself.

https://stackoverflow.com/a/932982/10596229