Skip to content

Commit

Permalink
Attempt to fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
david-batranu committed Dec 20, 2024
1 parent b7ab10d commit 63edba1
Show file tree
Hide file tree
Showing 8 changed files with 421 additions and 105 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog


## 1.0a1 (unreleased)

- Initial release.
[david-batranu]
9 changes: 0 additions & 9 deletions CHANGES.rst

This file was deleted.

3 changes: 1 addition & 2 deletions CONTRIBUTORS.rst → CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
Contributors
============
# Contributors

- David Bătrânu, david.batranu@eaudeweb.ro
74 changes: 74 additions & 0 deletions DEVELOP.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# Using the development buildout


## plonecli

The convenient way, use plonecli build ;)

```shell
plonecli build
```

or with --clear if you want to clean your existing venv

```shell
plonecli build --clear
```

Start your instance

```shell
plonecli serve
```


## Without plonecli

Create a virtualenv in the package
```shell
python3 -m venv venv
```

or with --clear if you want to clean your existing venv
```shell
python3 -m venv venv --clear
```

Install requirements with pip
```shell
`./venv/bin/pip install -r requirements.txt
```

bootstrap your buildout
```shell
./bin/buildout bootstrap
```

Run buildout
```shell
./bin/buildout
```

Start Plone in foreground
```shell
./bin/instance fg
```


## Running tests

```shell
tox
```

list all tox environments::

```shell
tox -l
```

run a specific tox env::

```shell
tox -e py312-Plone60
```
76 changes: 0 additions & 76 deletions DEVELOP.rst

This file was deleted.

Loading

0 comments on commit 63edba1

Please sign in to comment.