Skip to content

Commit

Permalink
Merge pull request os-autoinst#18738 from Martchus/typos
Browse files Browse the repository at this point in the history
Fix typos in documentation found via codespell
  • Loading branch information
okurz authored Feb 26, 2024
2 parents 537e946 + 8c04a8e commit 56b461d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Redmine project. Look for tickets with [easy] or [easy-hack] tags.
## How to get this repository working

Upon setting up a new openQA instance, it's also necessary to install some
aditional dependencies that are inherent to this repository.
additional dependencies that are inherent to this repository.

* On openSUSE to install an openQA worker and all dependencies do:

Expand Down Expand Up @@ -147,7 +147,7 @@ and additionally the following rules:
"why did we change it".
* Consider "multi-tag `assert_screen` with `match_has_tag`": Please use a
multi-tag `assert_screen` with `match_has_tag` instead of `check_screen`
with non-zero timeout to prevent introducing any timing dependant behaviour,
with non-zero timeout to prevent introducing any timing dependent behaviour,
to save test execution time as well as state more explicitly from the testers
point of view what are the expected alternatives. For example:
* Avoid use of egrep and fgrep. The two commands are deprecated, so please use
Expand All @@ -174,7 +174,7 @@ if (match_has_tag('yast2_missing_package')) {

### Preparing a new Pull Request
* All code needs to be tidy, for this use `make prepare` the first time you
set up your local environment, use `make tidy` before commiting your changes,
set up your local environment, use `make tidy` before committing your changes,
ensure your new code adheres to our coding style or use `make tidy-full` if
you have already few commits.
* Every pull request is tested by our CI system for different perl versions,
Expand Down
2 changes: 1 addition & 1 deletion how_to_create_a_support_server.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ where:
- aarch64 represents the architecture
- Online is the Flavor (Online,Full)

The above values are the default, thus `./data/supportserver/autoyast_supportserver_generator_sle15.sh` will procude the same image as the command in the example with the parameters.
The above values are the default, thus `./data/supportserver/autoyast_supportserver_generator_sle15.sh` will produce the same image as the command in the example with the parameters.

The producing image will have the name based on the arch. i include the creation date to be able to track when it was last updated. for instance
```
Expand Down
4 changes: 2 additions & 2 deletions ui-framework-documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ This is the documentation for Object Oriented approach used in automated GUI tes

## Context

SUSE Products changes and evolves across versions, and we are expected to write tests for various versions of the same product. However, we may still want to re-use the same [business
SUSE Products changes and evolves across versions, and we are expected to write tests for various versions of the same product. However, we may still want to reuse the same [business
logic](https://en.wikipedia.org/wiki/Business_logic) and avoid to write different code for each specific case.

Throughout the course of the project history, we attempted to solve this issue with many approaches; in the following order:
Expand All @@ -54,7 +54,7 @@ In the following guide let's explain in detail the last solution.
## Overview

The framework proposed here is based on
[Page Object Desing Pattern](https://www.selenium.dev/documentation/en/guidelines_and_recommendations/page_object_models/),
[Page Object Design Pattern](https://www.selenium.dev/documentation/en/guidelines_and_recommendations/page_object_models/),
implemented using ["Old school" object-oriented perl](https://www.perl.com/article/25/2013/5/20/Old-School-Object-Oriented-Perl/)
with a certain adaptation related to the environment-specific demands.

Expand Down
10 changes: 5 additions & 5 deletions variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ADDONURL_* | string | | Define url for the addons list def
ASSERT_BSC1122804 | boolean | false | In some scenarios it is necessary to check if the mistyped full name still happens.
ASSERT_Y2LOGS | boolean | false | If set to true, we will parse YaST logs after installation and fail test suite in case unknown errors were detected.
AUTOCONF | boolean | false | Toggle automatic configuration
AUTOYAST | string | | Full url to the AY profile or relative path if in [data directory of os-autoinst-distri-opensuse repo](https://github.com/os-autoinst/os-autoinst-distri-opensuse/tree/master/data). If value starts with `aytests/`, these profiles are provided by suport server, source code is available in [aytests repo](https://github.com/yast/aytests-tests). If value is a folder ending in `/` rules and classes will be used.
AUTOYAST | string | | Full url to the AY profile or relative path if in [data directory of os-autoinst-distri-opensuse repo](https://github.com/os-autoinst/os-autoinst-distri-opensuse/tree/master/data). If value starts with `aytests/`, these profiles are provided by support server, source code is available in [aytests repo](https://github.com/yast/aytests-tests). If value is a folder ending in `/` rules and classes will be used.
AUTOYAST_PREPARE_PROFILE | boolean | false | Enable variable expansion in the autoyast profile.
AUTOYAST_VERIFY_TIMEOUT | boolean | false | Enable validation of pop-up windows timeout.
AY_EXPAND_VARS | string | | Commas separated list of variable names to be expanded in the provided autoyast profile. For example: REPO_SLE_MODULE_BASESYSTEM,DESKTOP,... Provided variables will replace `{{VAR}}` in the profile with the value of given variable. See also `AUTOYAST_PREPARE_PROFILE`.
Expand Down Expand Up @@ -53,7 +53,7 @@ CONTAINERS_NERDCTL_VERSION | string | 0.16.1 | The version of NerdCTL tool.
CPU_BUGS | boolean | | Into Mitigations testing
DESKTOP | string | | Indicates expected DM, e.g. `gnome`, `kde`, `textmode`, `xfce`, `lxde`. Does NOT prescribe installation mode. Installation is controlled by `VIDEOMODE` setting
DEPENDENCY_RESOLVER_FLAG| boolean | false | Control whether the resolve_dependecy_issues will be scheduled or not before certain modules which need it.
DEV_IMAGE | boolean | false | This setting is used to set veriables properly when SDK or Development-Tools are required.
DEV_IMAGE | boolean | false | This setting is used to set variables properly when SDK or Development-Tools are required.
DISABLE_ONLINE_REPOS | boolean | false | Enables `installation/disable_online_repos` test module, relevant for openSUSE only. Test module explicitly disables online repos not to be used during installation.
DISABLE_SECUREBOOT | boolean | false | Disable secureboot in firmware of the SUT or in hypervisor's guest VM settings
DISABLE_SLE_UPDATES | boolean | false | Disables online updates for the installation.
Expand Down Expand Up @@ -108,7 +108,7 @@ K3S_CHANNEL | string | | Set the release channel to pick the k3s version from. O
KERNEL_FLAVOR | string | kernel-default | Set specific kernel flavor for test scenarios
KUBECTL_CLUSTER | string | | Defines the cluster used to test `kubectl`. Currently only `k3s` is supported.
KUBECTL_VERSION | string | v1.22.12 | Defines the kubectl version.
KEEP_DISKS | boolean | false | Prevents disks wiping for remote backends without snaphots support, e.g. ipmi, powerVM, zVM
KEEP_DISKS | boolean | false | Prevents disks wiping for remote backends without snapshots support, e.g. ipmi, powerVM, zVM
KEEP_ONLINE_REPOS | boolean | false | openSUSE specific variable, not to replace original repos in the installed system with snapshot mirrors which are not yet published.
KEEP_PERSISTENT_NET_RULES | boolean | false | Keep udev rules 70-persistent-net.rules, which are deleted on backends with image support (qemu, svirt) by default.
LAPTOP |||
Expand Down Expand Up @@ -221,7 +221,7 @@ XFS_MKFS_OPTIONS | string | | Define additional mkfs parameters. Used only in pu
XFS_TEST_DEVICE | string | | Define the device used for xfs tests. Used only in publiccloud test runs.
XFS_TESTS_REFLINK | boolean | false | If set to true, the mkfsoption for using reflink will be added. Used only in publiccloud test runs.
XFSTESTS_OVERLAY_BASE_FS | string | xfs | Define the base filesystem type of overlayfs
YAML_SCHEDULE_DEFAULT | string | | Defines default yaml file to be overriden by test suite schedule.
YAML_SCHEDULE_DEFAULT | string | | Defines default yaml file to be overridden by test suite schedule.
YAML_SCHEDULE_FLOWS | string | | Defines a comma-separated values representing additional flows which overrides steps on the schedule specified in YAML_SCHEDULE_DEFAULT.
YAML_SCHEDULE | string | | Defines yaml file containing test suite schedule.
YAML_TEST_DATA | string | | Defines yaml file containing test data.
Expand Down Expand Up @@ -372,7 +372,7 @@ PUBLIC_CLOUD_TOOLS_REPO | string | "" | cloud tools repo URL for azure_more_cli_
PUBLIC_CLOUD_EMBARGOED_UPDATES_DETECTED | boolean | true | Internal variable written by the code and readed by the code . Should NOT be set manually


### Wicked testsuite specifc variables
### Wicked testsuite specific variables

The following variables are relevant for the wicked testsuite

Expand Down

0 comments on commit 56b461d

Please sign in to comment.