Skip to content

Commit 39d52cf

Browse files
committed
style: renamed project from example to demo
1 parent 8ab7728 commit 39d52cf

11 files changed

Lines changed: 9 additions & 9 deletions

File tree

demo/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["hatchling"]
33
build-backend = "hatchling.build"
44

55
[project]
6-
name = "example"
6+
name = "demo"
77
dynamic = ["version"]
88
description = ''
99
readme = "README.md"
@@ -37,7 +37,7 @@ Issues = "https://github.com/febb0e/rbcn25-mastering-robotcode/issues"
3737
Source = "https://github.com/febb0e/rbcn25-mastering-robotcode"
3838

3939
[tool.hatch.version]
40-
path = "src/example/__about__.py"
40+
path = "src/demo/__about__.py"
4141

4242
[tool.hatch.envs.types]
4343
extra-dependencies = ["mypy>=1.0.0"]
@@ -49,7 +49,7 @@ check-robocop = "robocop --exclude missing-doc-suite ."
4949
check = ["check-mypy", "check-robotidy", "check-robocop"]
5050

5151
[tool.hatch.build.targets.wheel]
52-
packages = ["src/example"]
52+
packages = ["src/demo"]
5353

5454
[tool.hatch.envs.default]
5555
dependencies = ["robotframework-tidy", "robotframework-robocop"]
@@ -63,7 +63,7 @@ post-install-commands = [
6363
robot = "hatch run robotcode -p default robot {args:tests}"
6464
robot-ci = "hatch run robotcode -p ci-test robot --outputdir=reports {args:tests}"
6565
init-something = "hatch run scripts/init-something.py"
66-
run-tests = ["init-something", "start-server", "robot"]
66+
run-tests = ["start-webapps", "robot", "stop-webapps"]
6767
run-tests-ci = ["start-webapps", "robot-ci", "stop-webapps"]
6868
pm2-status = ["hatch run pm2 status"]
6969
start-todo-app-test = [
File renamed without changes.

demo/tests/01_simple/test.robot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
*** Settings ***
22
Documentation Example test suite
33
4-
Library example.mylib
5-
Resource example/myrsc.resource
4+
Library demo.mylib
5+
Resource demo/myrsc.resource
66

77

88
*** Test Cases ***

demo/tests/02_web_app/__init__.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
*** Settings ***
22
Documentation Initializes browser test environment
33
4-
Resource example/config/common.resource
4+
Resource demo/config/common.resource
55
Library Browser
66

77
Suite Setup New Browser ${BROWSER} ${HEADLESS}

0 commit comments

Comments
 (0)