diff options
author | Jon Parise <jon@pinterest.com> | 2020-08-13 10:13:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-13 10:13:20 -0700 |
commit | 1eb73468c92ba21397b986096c35c5244e3816de (patch) | |
tree | cd78a78f55918fcb11ef96bce5ca6f9761b69e87 /.github | |
parent | 209855d56f5be5b9bf479acab0fb55f99aeeab18 (diff) | |
download | pymemcache-1eb73468c92ba21397b986096c35c5244e3816de.tar.gz |
Fix incorrect pytest mark (#290)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e9125e..da57fe6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: run: | pip install -r test-requirements.txt py.test pymemcache/test/ \ - -m unit,integration \ + -m 'unit or integration' \ --port ${{ job.services.memcached.ports[11211] }} \ --tls-port ${{ job.services.tls_memcached.ports[11211] }} |