Skip to content

Commit

Permalink
test: fix embedme usage
Browse files Browse the repository at this point in the history
  • Loading branch information
ponty committed Jun 11, 2022
1 parent 7897a57 commit becd0f5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion doc/generate-doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def main():
for p in reversed(pls):
p.stop()
EasyProcess("killall Xvnc").call()
embedme = EasyProcess(["npx", "embedme", "../README.md"])
embedme = EasyProcess(["embedme", "../README.md"])
embedme.call()
print(embedme.stdout)
assert embedme.return_code == 0
Expand Down
2 changes: 1 addition & 1 deletion tests/vagrant/debian10.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ sudo pip3 install tox

# doc dependencies
# sudo apt-get install -y npm xtightvncviewer
# sudo npm install -g npx
# sudo npm install --global embedme
# sudo pip install -r /vagrant/requirements-doc.txt
2 changes: 1 addition & 1 deletion tests/vagrant/debian11.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ sudo pip3 install tox

# doc dependencies
# sudo apt-get install -y npm xtightvncviewer
# sudo npm install -g npx
# sudo npm install --global embedme
# sudo pip install -r /vagrant/requirements-doc.txt
2 changes: 1 addition & 1 deletion tests/vagrant/ubuntu1804.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ sudo pip3 install tox

# doc dependencies
sudo apt-get install -y npm xtightvncviewer
sudo npm install -g npx
sudo npm install --global embedme
# sudo pip install -r /vagrant/requirements-doc.txt
2 changes: 1 addition & 1 deletion tests/vagrant/ubuntu2004.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ sudo pip3 install tox

# doc dependencies
sudo apt-get install -y npm xtightvncviewer
sudo npm install -g npx
sudo npm install --global embedme
# sudo pip install -r /vagrant/requirements-doc.txt
2 changes: 1 addition & 1 deletion tests/vagrant/ubuntu2204.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ sudo pip3 install tox

# doc dependencies
sudo apt-get install -y npm xtightvncviewer
sudo npm install -g npx
sudo npm install --global embedme
# sudo pip install -r /vagrant/requirements-doc.txt

0 comments on commit becd0f5

Please sign in to comment.