-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* testing mouse actions in unimacroutils.py... work in progress... * unimacroutils.py set_mouse_position added * bump to 1.6.3 --------- Co-authored-by: Doug Ransom <[email protected]>
- Loading branch information
1 parent
eb53571
commit d577abc
Showing
11 changed files
with
279 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -152,3 +152,4 @@ cython_debug/ | |
.vscode | ||
/documentation/.#* | ||
.rst | ||
*.orig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
"""common fixtures for the dtactions project | ||
""" | ||
import pytest | ||
import natlink | ||
from natlinkcore import natlinkstatus | ||
|
||
@pytest.fixture(scope="module") | ||
def nl_stat(): | ||
status = natlinkstatus.NatlinkStatus() | ||
return status | ||
|
||
@pytest.fixture(scope="module") | ||
def nat_conn(): | ||
yield natlink.natConnect() | ||
natlink.natDisconnect() |
Oops, something went wrong.