Skip to content

Commit 99fde7e

Browse files
committed
ci
1 parent 4c23bc8 commit 99fde7e

File tree

5 files changed

+6
-17
lines changed

5 files changed

+6
-17
lines changed

.meta.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,5 @@ test_deps_additional = ""
2828
py_versions = "[\"3.12\", \"3.11\", \"3.10\"]"
2929
jobs = [
3030
"qa",
31-
"test",
32-
"coverage",
33-
"dependencies",
3431
"release_ready",
3532
]

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ include .editorconfig
1010
include *.txt
1111
include *.yml
1212
include *.md
13+
include VERSION
1314
exclude *-mxdev.txt
1415
exclude Dockerfile
1516
exclude mx.ini

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.0.0a0

setup.cfg

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[metadata]
22
name = collective.translators
3+
version = 1.0.0a0
34
description = Pluggable external translation utilities for Plone
45
long_description = file: README.md
56
long_description_content_type = text/markdown
@@ -52,9 +53,9 @@ test =
5253
plone.app.testing
5354
plone.restapi[test]
5455
plone.app.contenttypes[test]
55-
pytest
56-
pytest-cov
57-
pytest-plone>=0.5.0
56+
# pytest
57+
# pytest-cov
58+
# pytest-plone>=0.5.0
5859
libretranslate =
5960

6061
[options.packages.find]

src/collective/translators/testing.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from plone.app.contenttypes.testing import PLONE_APP_CONTENTTYPES_FIXTURE
2-
from plone.app.robotframework.testing import REMOTE_LIBRARY_BUNDLE_FIXTURE
32
from plone.app.testing import applyProfile
43
from plone.app.testing import FunctionalTesting
54
from plone.app.testing import IntegrationTesting
@@ -37,13 +36,3 @@ def setUpPloneSite(self, portal):
3736
bases=(FIXTURE, WSGI_SERVER_FIXTURE),
3837
name="Collective.TranslatorsLayer:FunctionalTesting",
3938
)
40-
41-
42-
ACCEPTANCE_TESTING = FunctionalTesting(
43-
bases=(
44-
FIXTURE,
45-
REMOTE_LIBRARY_BUNDLE_FIXTURE,
46-
WSGI_SERVER_FIXTURE,
47-
),
48-
name="Collective.TranslatorsLayer:AcceptanceTesting",
49-
)

0 commit comments

Comments
 (0)