Skip to content

Commit

Permalink
Minor fixes (#703)
Browse files Browse the repository at this point in the history
* We support OSX now we have conda

* Fixes #697

* Fixes #699

* Only report coverage for automation code
  • Loading branch information
birdsarah authored Jun 26, 2020
1 parent 7c678d6 commit 37f69dd
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 50 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ script:
npm test;
else
cd test;
python -m pytest --cov --cov-report=xml $TESTS -s -v --durations=10;
python -m pytest --cov=../automation --cov-report=xml $TESTS -s -v --durations=10;
codecov -f coverage.xml;
fi
after_success:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Table of Contents <!-- omit in toc -->
* [Debugging the platform](#debugging-the-platform)
* [Managing requirements](#managing-requirements)
* [Running tests](#running-tests)
* [Mac OSX (Limited support for developers)](#mac-osx-limited-support-for-developers)
* [Mac OSX](#mac-osx-limited-support-for-developers)
* [Troubleshooting](#troubleshooting)
* [Docker Deployment for OpenWPM](#docker-deployment-for-openwpm)
* [Building the Docker Container](#building-the-docker-container)
Expand Down
2 changes: 1 addition & 1 deletion automation/DataAggregator/BaseAggregator.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def handle_special(self, data: Dict[str, Any]) -> None:
self.curent_visit_ids.remove(data["visit_id"])
except ValueError:
self.logger.error(
"Trying do remove visit_id %i "
"Trying to remove visit_id %i "
"from current_visit_ids failed", data["visit_id"])

self.run_visit_completion_tasks(
Expand Down
47 changes: 0 additions & 47 deletions test/test_pages/canvas_recursion.html

This file was deleted.

0 comments on commit 37f69dd

Please sign in to comment.