We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I found that our /tmp on nibotmi was filled up with tmp*png files. And they are coming from pandas. I did
mkdir tmp; TMPDIR=$PWD/tmp nosetests -s -v pandas
to find 186 .png of 12M total after a single run of tests
The text was updated successfully, but these errors were encountered:
I'll take a look - clearly an oversight.
Sorry, something went wrong.
It's because plt.savefig() adds an extension to the file by default and ensure_clean() checks for exactly the file name. Will put in a fix right now.
ensure_clean()
Successfully merging a pull request may close this issue.
I found that our /tmp on nibotmi was filled up with tmp*png files. And they are coming from pandas. I did
mkdir tmp; TMPDIR=$PWD/tmp nosetests -s -v pandas
to find 186 .png of 12M total after a single run of tests
The text was updated successfully, but these errors were encountered: