diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index e5acdafa..67cee926 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -35,12 +35,6 @@ jobs:
run: docker run -d -p 7700:7700 getmeili/meilisearch:latest meilisearch --no-analytics --master-key=masterKey
- name: Test with pytest
run: pipenv run pytest --cov-report=xml
- - name: Upload coverage
- uses: codecov/codecov-action@v3
- with:
- fail_ci_if_error: true
- env:
- CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
pylint:
name: pylint
diff --git a/README.md b/README.md
index 7e02eb2f..7ba82c31 100644
--- a/README.md
+++ b/README.md
@@ -17,9 +17,6 @@
-
-
-
@@ -103,7 +100,7 @@ With the task `uid`, you can check the status (`enqueued`, `canceled`, `processi
#### Basic Search
-``` python
+```python
# Meilisearch is typo-tolerant:
index.search('caorl')
```
@@ -112,17 +109,17 @@ Output:
```json
{
- "hits": [
- {
- "id": 1,
- "title": "Carol",
- "genre": ["Romance", "Drama"]
- }
- ],
- "offset": 0,
- "limit": 20,
- "processingTimeMs": 1,
- "query": "caorl"
+ "hits": [
+ {
+ "id": 1,
+ "title": "Carol",
+ "genre": ["Romance", "Drama"]
+ }
+ ],
+ "offset": 0,
+ "limit": 20,
+ "processingTimeMs": 1,
+ "query": "caorl"
}
```
@@ -143,21 +140,21 @@ JSON output:
```json
{
- "hits": [
- {
- "id": 6,
- "title": "Philadelphia",
- "_formatted": {
- "id": 6,
- "title": "Philadelphia",
- "genre": ["Drama"]
- }
- }
- ],
- "offset": 0,
- "limit": 20,
- "processingTimeMs": 0,
- "query": "phil"
+ "hits": [
+ {
+ "id": 6,
+ "title": "Philadelphia",
+ "_formatted": {
+ "id": 6,
+ "title": "Philadelphia",
+ "genre": ["Drama"]
+ }
+ }
+ ],
+ "offset": 0,
+ "limit": 20,
+ "processingTimeMs": 0,
+ "query": "phil"
}
```
@@ -193,7 +190,7 @@ index.search(
{
"id": 2,
"title": "Wonder Woman",
- "genres": ["Action","Adventure"]
+ "genres": ["Action", "Adventure"]
}
],
"offset": 0,