Windows Installer and back-end tests are wrong!
See original GitHub issueChanging directory on installOnWindows.bat
file in lines 4 and 19 are wrong!
[Reason/Solution]: we need to go back one more directory to reach etherpad-lite root.
This line:
Must change to:
cd /D "%~dp0..\.."
Also,
Github action flow on backend-tests.yml
in lines 119 and 175 are wrong.
[Reason/Solution]:
These lines:
Must change to:
- name: Install all dependencies and symlink for ep_etherpad-lite
run: src/bin/installOnWindows.bat
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
How to troubleshoot Windows Installer errors - Microsoft Support
Right-click Windows Installer, and then click Properties. If the Startup type box is set to Disabled, change it to Manual. Click OK to...
Read more >6 Common Test Automation Mistakes And How To Avoid Them
Success in software test automation is less about getting it right and more about avoiding mistakes. Here are six common errors and how...
Read more >The Installer Testing Guide
The first step to take is to check if the MSI installer is digitally signed. This can be easily done by right-clicking on...
Read more >No test found. Make sure that installed test discoverers ...
34 Answers 34 · Install Nunit and NUnitTestAdapter latest version from NUGET package. · Go to -> Test -> Test Settings -> Default...
Read more >Django Tutorial Part 10: Testing a Django web application
The test methods are run independently, with common setup and/or tear-down behavior defined in the class, as shown below. class YourTestClass( ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Fixed by #5205.
Sure