Simple ingesting tools for Beancount (plain text, double entry accounting software). More importantly, a framework to allow you to easily write your own importers.
GNU General Public License v3.0
115
stars
39
forks
source link
Regenerate some extracted unit test data that changed with 75a2d33 #82
It looks like 75a2d33 changed the way some dates are generated. This PR runs pytest --generate to update those .extracted files with the newly generated dates.
This also fixes one small warning in csvreader.py when generating the tests:
I added an r in front of the pattern string to get rid of this warning. I also made a similar change everywhere else in the project that \. was used in a pattern.
It looks like 75a2d33 changed the way some dates are generated. This PR runs
pytest --generate
to update those.extracted
files with the newly generated dates.This also fixes one small warning in
csvreader.py
when generating the tests:I added an
r
in front of the pattern string to get rid of this warning. I also made a similar change everywhere else in the project that\.
was used in a pattern.