Compare commits

..
3 Commits
Author SHA1 Message Date
budi 6302de6bc4 Updated base image 2025-09-03 13:55:28 +02:00
dependabot[bot]GitHubdependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1e1c60fc89 [pip] Bump coverage from 7.10.5 to 7.10.6 (#532)
Bumps [coverage](https://github.com/nedbat/coveragepy) from 7.10.5 to 7.10.6.
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](https://github.com/nedbat/coveragepy/compare/7.10.5...7.10.6)

---
updated-dependencies:
- dependency-name: coverage
  dependency-version: 7.10.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-01 11:47:29 +02:00
Juan Pedro Bretti MandaranoandGitHub 2a12e66077 Fix typo in WSL configuration file name (#531)
There is no documentation that file `/etc/wsl2.conf` does exist.
According to Microsoft documentation, it is called `/etc/wsl.conf`. 

See https://learn.microsoft.com/en-us/windows/wsl/wsl-config for reference.
2025-09-01 11:47:09 +02:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ Credit goes to [Guillaume - The Parallel Interface blog](https://www.paralint.co
sudo usermod -a -G kvm ${USER}
```
2. Add necessary flags to `/etc/wsl2.conf` to their respective sections.
2. Add necessary flags to `/etc/wsl.conf` to their respective sections.
```
[boot]
command = /bin/bash -c 'chown -v root:kvm /dev/kvm && chmod 660 /dev/kvm'
+1 -1
View File
@@ -1,6 +1,6 @@
autopep8==2.3.2
click==8.2.1
coverage==7.10.5
coverage==7.10.6
mock==5.2.0
pytest==8.4.1
pytest-cov==6.2.1
+1 -1
View File
@@ -1,4 +1,4 @@
FROM appium/appium:v3.0.1-p0
FROM appium/appium:v3.0.1-p1
ARG AUTHORS="Budi Utomo"
LABEL author="${AUTHORS} <budtmo.os@gmail.com>"