clay icon indicating copy to clipboard operation
clay copied to clipboard

Clay is a framework for building RESTful backend services using best practices. It’s a wrapper around Flask.

Results 5 clay issues
Sort by recently updated
recently updated
newest added

This fixes #39, since `not dbapi_name` will result in a boolean and then checked against an tuple of strings.

How do I do data driven test in clay? I tried using pytest's parameterize but doesn't seem to work with clay.

Consider the following check: https://github.com/uber/clay/blob/master/clay/database.py#L18 This line should be written as: ``` python if dbapi_name not in ('psycopg2', 'MySQLdb', 'sqlite3'): ``` `not dbapi_name` will evaluate to a boolean, which will...

This change is motivated by a similar interface that @sophiaxc and I made for an internal project. The idea for that project was that each iteration of this loop was...

# Notes The stated goal for Clay is to be “a framework for building RESTful backend services using best practices.” One of the best practices omitted, however, is the Cross-Site...