Skip to content

Commit ba00326

Browse files
authored
Merge pull request #19 from Integrated-Testing-Environment/dev
Dev
2 parents 6a74e61 + 2dea512 commit ba00326

File tree

93 files changed

+827
-975
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+827
-975
lines changed

.circleci/config.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ jobs:
2828
- run:
2929
command: python ./test/unit_test/check_installed_and_import/check_and_import.py
3030
name: check package
31-
- run:
32-
command: python ./test/unit_test/open_extend_test/open_extend_ui_test.py
33-
name: open_extend_ui_test
3431

3532
build-and-test-windows-stable:
3633
executor:
@@ -56,9 +53,6 @@ jobs:
5653
- run:
5754
command: python ./test/unit_test/check_installed_and_import/check_and_import.py
5855
name: check package
59-
- run:
60-
command: python ./test/unit_test/open_extend_test/open_extend_ui_test.py
61-
name: open_extend_ui_test
6256
# pip all require package
6357
- run:
6458
command: pip install --user -r dev_requirements.txt

.github/workflows/ITE-github-actions_dev.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,8 @@ jobs:
2323
run: python -m pip install --upgrade --user pip setuptools wheel
2424
- name: check package
2525
run: python ./test/unit_test/check_installed_and_import/check_and_import.py
26-
- name: pip requirements.txt
27-
run: python -m pip install --user -r requirements.txt
28-
- name: check package
29-
run: python ./test/unit_test/check_installed_and_import/check_and_import.py
30-
- name: open_extend_ui_test
31-
run: python ./test/unit_test/open_extend_test/open_extend_ui_test.py
3226
- name: pip dev_requirements.txt
3327
run: python -m pip install --user -r dev_requirements.txt
28+
- name: check package
29+
run: python ./test/unit_test/check_installed_and_import/check_and_import.py
30+

.github/workflows/ITE-github-actions_stable.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,4 @@ jobs:
2727
run: python -m pip install --user -r requirements.txt
2828
- name: check package
2929
run: python ./test/unit_test/check_installed_and_import/check_and_import.py
30-
- name: open_extend_ui_test
31-
run: python ./test/unit_test/open_extend_test/open_extend_ui_test.py
32-
- name: pip dev_requirements.txt
33-
run: python -m pip install --user -r dev_requirements.txt
30+

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -110,15 +110,7 @@
110110
[![ITE GitHub Actions Stable](https://github.com/JE-Chen/Integration-testing-environment/actions/workflows/ITE-github-actions_stable.yml/badge.svg)](https://github.com/JE-Chen/Integration-testing-environment/actions/workflows/ITE-github-actions_stable.yml)
111111

112112
### install
113-
114-
#### stable
115-
116-
```commandline
117-
pip install integration_testing_environment
118-
```
119-
120-
#### dev
121-
122-
```commandline
123-
pip install integration_testing_environment_dev
124-
```
113+
#### we suggest install full package
114+
* pip install integration_testing_environment[full_extension]
115+
#### if we don't want to use send after test
116+
* pip install integration_testing_environment

dev.toml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "integration_testing_environment_dev"
9-
version = "0.0.20"
9+
version = "0.0.22"
1010
authors = [
1111
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
1212
]
@@ -15,7 +15,8 @@ readme = { file = "README.md", content-type = "text/markdown" }
1515
requires-python = ">=3.7"
1616
license = { text = "MIT" }
1717
dependencies = [
18-
"je-editor"
18+
"je-editor", "je_auto_control", "je_web_runner",
19+
"je_load_density", "je_api_testka"
1920
]
2021
classifiers = [
2122
"Programming Language :: Python :: 3.7",
@@ -28,12 +29,9 @@ classifiers = [
2829
]
2930

3031
[project.optional-dependencies]
31-
another_extension = ["je-mail-thunder", "je-tk-plot"]
3232
full_extension = [
33-
"je-mail-thunder", "je-tk-plot",
34-
"je_auto_control", "je_web_runner", "je_load_density", "je_api_testka"
33+
"je-mail-thunder"
3534
]
36-
only_test_extension = ["je_auto_control", "je_web_runner", "je_load_density", "je_api_testka"]
3735

3836
[project.urls]
3937
"Homepage" = "https://github.com/JE-Chen/Integration-testing-environment"

dev_requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,4 @@ je-load-density
77
je-auto-control
88
je-web-runner
99
je-mail-thunder
10-
je-tk-plot
1110
integration_testing_environment_dev
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
from integration_testing_environment.integration_testing_environment_ui.editor.extend_je_editor_ui import start_ite
1+
from integration_testing_environment.integration_testing_environment_ui\
2+
.editor_main.main_ui import start_editor
23

3-
__all__ = ["start_ite"]
4+
__all__ = [
5+
"start_editor"
6+
]

integration_testing_environment/integration_testing_environment_ui/editor/extend_je_editor_ui.py

Lines changed: 0 additions & 38 deletions
This file was deleted.

integration_testing_environment/integration_testing_environment_ui/editor/ite_content_init/ite_content_init.py

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)