Chris Gurney
Chris Gurney
@mikez per [our discussion](https://github.com/chrisgurney/things2md/pull/2#issuecomment-1967535472), adding your proposed solution here: Currently: - in responses, `stop_date`, `modified`, and `created` are in "localtime"; - in queries, `stop_date` expects GMT (aka UTC) dates. The...
@mikez @AlexanderWillner A few questions on this: 1. How do I go about adding data to test against? I feel like directly updating the database is _not_ the way to...
Setting the TZ environment variable using `OS.environ` between invocations of the things.py API appears to work on macOS, but not on a BSD system (or GitHub actions) per @mikez's test....
Forgot the other detail from my conversation with @mikez last week, which was that we think the call to `.last` only goes as far back as the _current time_ X...
The decision to be made here, I think, is: 1. we commit and try the test above as-is; or 2. come to a decision on the behavior of `.last` and...
@mikez Marked as _Ready for Review_ per your approval. @AlexanderWillner I believe this is over to you now (unless you disagree). - Note that there's a possibility the tests won't...
Update: I also needed to install `pytest-cov` `pip install pytest-cov` ...otherwise I was getting errors running `make testdoc`: ``` % make testdoc THINGSDB=tests/main.sqlite pytest --cov=things -W ignore::UserWarning --cov-report=xml --cov-context=test --doctest-modules...
@mikez Back to you.
> @AlexanderWillner If you'd enjoy to do so, can you add a check for `pytest-cov` in the makefile; see [#118 (comment)](https://github.com/thingsapi/things.py/pull/118#issuecomment-2189113454) Here's what I was thinking: ``` @type pytest >/dev/null...
@mikez Linting issues fixed. Thanks for the tips.