Merge pull request #3040 from derekpierre/circleci-removal

Remove lingering references to CircleCI which is no longer used.
pull/3043/head
KPrasch 2022-12-23 09:32:48 -08:00 committed by GitHub
commit 2ba80c6029
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 2 additions and 14 deletions

View File

@ -43,7 +43,6 @@ jinja2 = "<3.1.0" # because of docs
[dev-packages] [dev-packages]
# Pytest # Pytest
# pytest==7 causes problems with autouse mocks and config in `.circleci` folder.
# See https://github.com/pytest-dev/pytest/issues/9703 # See https://github.com/pytest-dev/pytest/issues/9703
pytest = "<7" pytest = "<7"
pytest-twisted = "*" pytest-twisted = "*"

View File

@ -260,7 +260,7 @@ be automatically opened in the web browser.
Building Docker Building Docker
--------------- ---------------
Docker builds are automated as part of the publication workflow on circleCI and pushed to docker cloud. Docker builds are automated as part of the publication workflow and pushed to docker cloud.
However you may want to build a local version of docker for development. However you may want to build a local version of docker for development.
We provide both a ``docker-compose.yml`` and a ``Dockerfile`` which can be used as follows: We provide both a ``docker-compose.yml`` and a ``Dockerfile`` which can be used as follows:
@ -352,5 +352,5 @@ For example, for a new ``patch`` release, we would do:
(nucypher)$ make release bump=patch (nucypher)$ make release bump=patch
3. The previous step triggers the publication webhooks on CircleCI. 3. The previous step triggers the publication webhooks.
Monitor the triggered deployment build for manual approval. Monitor the triggered deployment build for manual approval.

View File

View File

@ -1,6 +1,3 @@
import contextlib import contextlib
import pytest import pytest

View File

@ -1,8 +0,0 @@
import os
import pytest
circleci_only = pytest.mark.skipif(condition=('CIRCLECI' not in os.environ), reason='Only run on CircleCI')
skip_on_circleci = pytest.mark.skipif(condition=('CIRCLECI' in os.environ), reason='Do not run on CircleCI')