Skip to content

Commit

Permalink
Update README.md (#820)
Browse files Browse the repository at this point in the history
  • Loading branch information
rogergarciapages authored Jul 18, 2024
1 parent 475bd18 commit 53ed4fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ data = supabase.table("countries").update({"country": "Indonesia", "capital_city
```python
country = {
"country": "United Kingdom",
"capital_city": "London" # this was missing when it was added
"capital_city": "London" # This was missing when it was added
}

data = supabase.table("countries").upsert(country).execute()
Expand Down Expand Up @@ -214,13 +214,13 @@ Contributing to the Python libraries are a great way to get involved with the Su

### Running Tests

Currently the test suites are in a state of flux. We are expanding our clients tests to ensure things are working, and for now can connect to this test instance, that is populated with the following table:
Currently, the test suites are in a state of flux. We are expanding our clients' tests to ensure things are working, and for now can connect to this test instance, which is populated with the following table:

<p align="center">
<img width="720" height="481" src="https://i.ibb.co/Bq7Kdty/db.png">
</p>

The above test database is a blank supabase instance that has populated the `countries` table with the built in countries script that can be found in the supabase UI. You can launch the test scripts and point to the above test database by running
The above test database is a blank supabase instance that has populated the `countries` table with the built-in countries script that can be found in the supabase UI. You can launch the test scripts and point to the above test database by running

```bash
./test.sh
Expand Down

0 comments on commit 53ed4fe

Please sign in to comment.