Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
7451cd5
comment out unused specs
drusepth May 21, 2021
5e0e85d
remove cucumber
drusepth May 21, 2021
1d380db
remove better_errors
drusepth May 21, 2021
79ba60f
remove capybara
drusepth May 21, 2021
9de0e46
remove factorybot
drusepth May 21, 2021
9c75029
remove guard
drusepth May 21, 2021
a1dc586
clean slate tests
drusepth May 21, 2021
434f3f0
clean config files
drusepth May 21, 2021
2361578
remove linker tests
drusepth May 21, 2021
699b9a8
comment out more tests
drusepth May 21, 2021
6fe86c5
Add test command to readme
drusepth May 21, 2021
f13e791
remove linker fixtures
drusepth May 21, 2021
a8c4e96
remove more fixtures
drusepth May 21, 2021
30ee8a6
rebuild test db
drusepth May 21, 2021
77ab502
just... comment them all out
drusepth May 21, 2021
2af5748
first passing test
drusepth May 21, 2021
960ea5b
move commented out tests
drusepth May 22, 2021
b45f71f
don't compile js in test env
drusepth May 22, 2021
120a763
i guess we probably should compile js in test env but i dunno how, so…
drusepth May 22, 2021
27a623c
eod
drusepth May 22, 2021
d920543
add smoke tests for MainController
drusepth May 22, 2021
0e4b466
remove skylight config
drusepth May 22, 2021
f0a05b4
move tests to another dir temporarily
drusepth May 22, 2021
f876451
add some tests for user/universe/pages
drusepth May 24, 2021
a5e2432
Merge branch 'master' into travis-2021
drusepth May 24, 2021
903de11
Merge branch 'master' into travis-2021
drusepth May 24, 2021
a544daf
Merge branch 'travis-2021' of github.com:indentlabs/notebook into tra…
drusepth May 24, 2021
fb647aa
revise tests action
drusepth May 24, 2021
7fda9bd
add ruby 3 to tests matrix
drusepth May 24, 2021
fcb2ba3
remove perf test
drusepth May 24, 2021
6d362b5
manually compile js in action step
drusepth May 24, 2021
76fb623
remove ruby3 from tests
drusepth May 24, 2021
72ad2e4
try assets:precompile instead
drusepth May 24, 2021
1d3cecd
set up node manually
drusepth May 24, 2021
16e0f3e
update node
drusepth May 24, 2021
194e14f
check out setup{} format
drusepth May 24, 2021
c7de9ff
remove travis
drusepth May 24, 2021
8630d7d
Merge branch 'master' into travis-2021
drusepth May 27, 2021
c400df3
recompile gemfile
drusepth May 27, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove travis
  • Loading branch information
drusepth committed May 24, 2021
commit c7de9ff4a81924ca39f0059f5e735eddc712e66a
1 change: 0 additions & 1 deletion .coveralls.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
# See: https://docs.docker.com/engine/reference/builder/#dockerignore-file
.git/
.github/
.coveralls.yml
.dockerignore
.editorconfig
.gitignore
.travis.yml
.rubocop.yml
CHANGELOG.md
docker-compose.yml
Expand Down
5 changes: 2 additions & 3 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,15 @@ We also keep ideas in there, and you are welcome to jump into the conversation.
## Adding and updating features

Please [create a pull request][pr] to implement features you'd like to see.
[Travis-ci][travis] is building every pull request,
GitHub Actions builds every pull request,
so we'll have prompt feedback on the progress of the feature implementation.
We require a few things in order to merge a pull request:

- You must merge `master`'s latest commit
- There must be no merge conflicts
- Your new feature must be covered by tests
- The Travis build must pass
- The test build must pass

[travis]: https://travis-ci.org/indentlabs/notebook
[pr]: https://github.com/indentlabs/notebook/compare/
[create an issue report]: https://github.com/indentlabs/notebook/issues/new
[issue tracker]: https://github.com/indentlabs/notebook/issues
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion README.rdoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
= Notebook.ai
{<img src="https://travis-ci.org/indentlabs/notebook.png?branch=master" alt="Build Status" />}[https://travis-ci.org/indentlabs/notebook]
{<img src="https://codeclimate.com/github/indentlabs/notebook/badges/gpa.svg" />}[https://codeclimate.com/github/indentlabs/notebook]
{<img src="https://codeclimate.com/github/indentlabs/notebook/badges/coverage.svg" />}[https://codeclimate.com/github/indentlabs/notebook/coverage]
{<img src="http://inch-ci.org/github/indentlabs/notebook.svg?branch=master" alt="Inline docs" />}[http://inch-ci.org/github/indentlabs/notebook]
Expand Down
9 changes: 0 additions & 9 deletions config/database.yml.travis

This file was deleted.

2 changes: 1 addition & 1 deletion test/models/user_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class UserTest < ActiveSupport::TestCase
def setup
@free_user = User.new
@free_user.selected_billing_plan_id = 1
@free_user.selected_billing_plan_id = BillingPlan::FREE_IDS.first

@premium_user = User.new
@premium_user.selected_billing_plan_id = BillingPlan::PREMIUM_IDS.first
Expand Down