ultrablue / sillaj-l

A re-coding of the Sillaj time tracker tool using the Laravel php framework.
GNU General Public License v3.0
2 stars 0 forks source link

Make the tests use MySQL instead of SQLite; or drop the use of ROLL UP #226

Open ultrablue opened 1 year ago

ultrablue commented 1 year ago

Since SQLite doesn't have a ROLL UP directive, it's not possible to test anything that uses it with the current testing configs. We have two options: Move testing over to MySQL - This is probably the right thing to do. Drop ROLL UP - This isn't incorrect. The way the reports work now, using ROLL UP, is a bit of a pain, and not very flexible. It will require some pretty significant refactoring, though.