mirror of https://github.com/nucypher/nucypher.git
Merge pull request #3040 from derekpierre/circleci-removal
Remove lingering references to CircleCI which is no longer used.pull/3043/head
commit
2ba80c6029
1
Pipfile
1
Pipfile
|
@ -43,7 +43,6 @@ jinja2 = "<3.1.0" # because of docs
|
|||
|
||||
[dev-packages]
|
||||
# Pytest
|
||||
# pytest==7 causes problems with autouse mocks and config in `.circleci` folder.
|
||||
# See https://github.com/pytest-dev/pytest/issues/9703
|
||||
pytest = "<7"
|
||||
pytest-twisted = "*"
|
||||
|
|
|
@ -260,7 +260,7 @@ be automatically opened in the web browser.
|
|||
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.
|
||||
|
||||
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
|
||||
|
||||
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.
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
|
||||
|
||||
|
||||
import contextlib
|
||||
|
||||
import pytest
|
||||
|
|
|
@ -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')
|
Loading…
Reference in New Issue